Commit e73da567 authored by Dennis Tang's avatar Dennis Tang

clean up enableSubmit check

parent 4b752e2e
......@@ -44,6 +44,9 @@ export default {
computed: {
...mapState(['selectedProject', 'selectedZone', 'selectedMachineType', 'machineTypes']),
...mapGetters(['hasProject', 'hasZone', 'hasMachineType']),
allDropdownsSelected() {
return this.hasProject && this.hasZone && this.hasMachineType;
},
isDisabled() {
return !this.selectedProject || !this.selectedZone;
},
......@@ -107,7 +110,7 @@ export default {
});
},
enableSubmit() {
if (this.hasProject && this.hasZone && this.hasMachineType) {
if (this.allDropdownsSelected) {
const submitButtonEl = document.querySelector('.js-gke-cluster-creation-submit');
if (submitButtonEl) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment