Remove extra customize button

The customize button was redundant to the custom tab
This could lead to confusion with the user experience,
so the additional button has been removed.

Signed-off-by: Burton Rheutan <rheutan7@gmail.com>
This commit is contained in:
Burton Rheutan 2019-06-16 09:26:15 -05:00 committed by Alex Ellis
parent fd39f99125
commit a6c9e3bb30
2 changed files with 0 additions and 7 deletions

View File

@ -283,10 +283,6 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$interval', '$f
$scope.selectedFunc = func;
}
$scope.customizeStoreFunc = function() {
$scope.selectedTabIdx = CUSTOM_DEPLOY_TAB_INDEX;
}
$scope.onTabSelect = function(idx) {
newFuncTabIdx = idx;
}

View File

@ -162,9 +162,6 @@
<md-button ng-click="closeDialog()" class="md-secondary">
Close Dialog
</md-button>
<md-button ng-if="selectedFunc" ng-click="customizeStoreFunc()" class="md-warn">
Customize
</md-button>
<md-button ng-disabled="userForm.$invalid" ng-click="createFunc()" class="md-primary">
Deploy
</md-button>