-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Service params editing #1253
Service params editing #1253
Conversation
…binding to an application
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another quick review before the update
- bind service instance modal
- newServiceInstance is not defined error on clicking add (on line newServiceInstance.name = undefined;)
- create service instance modal
- enter text for a tag, but don't hit return/defocus, then click edit. the tags input box is shown above the new pop up
- create service instance service parameters modal
- The text block input focus is blue
- There's no feedback when invalid json is ignored. It would be good to have the standard 'invalid input' input field error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, picked up a couple of things I'd missed last time around (see comments). Also, there's a bug where '[object Object]' is shown when editing an existing service param.
@@ -31,9 +31,14 @@ | |||
name: userInput.name, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in file name... create-servince-instance.service.js
<div ng-if="wizardCtrl.options.editParams" class="async-dialog-param-editor" ng-class="{'param-editor-open' : wizardCtrl.options.editParams}"> | ||
<form name="form.paramEditor" class="async-dialog-param-editor param-editor-container"> | ||
<div class="form-group json-input-field" focusable-input ng-model-options="{ debounce: 200 }" ng-class="{'has-error': form.paramEditor.$invalid && form.paramEditor.$dirty}"> | ||
<label class="control-label" translate>app.app-info.app-tabs.services.create.service-params</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, late comment... instead of 'Parameters' could we call this 'Binding Parameters' and in the create instance dialog 'Instance Parameters'?
No description provided.