We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139f8e5 commit b5263fcCopy full SHA for b5263fc
src/app/frontend/deploy/portmappings.html
@@ -16,7 +16,7 @@
16
17
<md-input-container class="md-block">
18
<label>Service</label>
19
-<md-select ng-model="ctrl.serviceType" ng-change="ctrl.changeServiceType()">
+<md-select ng-model="ctrl.serviceType" ng-change="ctrl.changeServiceType()" required>
20
<md-option ng-repeat="serviceType in ctrl.serviceTypes" ng-value="serviceType">
21
{{serviceType.label}}
22
</md-option>
src/app/frontend/deploy/portmappings_controller.js
@@ -67,7 +67,7 @@ export default class PortMappingsController {
67
* Selected service type. Binding to outer scope.
68
* @export {ServiceType}
69
*/
70
- this.serviceType;
+ this.serviceType = NO_SERVICE;
71
}
72
73
/**
0 commit comments