Skip to content

Commit

Permalink
Fixed editing endpoint extension; #74
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Jun 27, 2018
1 parent 222a890 commit 50e09a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -842,8 +842,8 @@ protected void showInputForm (@Nonnull final WebPageExecutionContext aWPEC,

aForm.addFormGroup (new BootstrapFormGroup ().setLabel ("Extension")
.setCtrl (new HCTextAreaAutosize (new RequestField (FIELD_EXTENSION,
aSelectedObject != null ? aSelectedObject.getFirstExtensionXML ()
: null)))
aSelectedEndpoint != null ? aSelectedEndpoint.getFirstExtensionXML ()
: null)))
.setHelpText ("Optional extension to the endpoint. If present it must be valid XML content!")
.setErrorList (aFormErrors.getListOfField (FIELD_EXTENSION)));
}
Expand Down

0 comments on commit 50e09a7

Please sign in to comment.