Get error state in edit environment name form working

This commit is contained in:
George Drummond
2019-05-02 10:23:01 -04:00
parent 2f75d3b245
commit 430a6493f0
5 changed files with 66 additions and 20 deletions

View File

@@ -6,13 +6,17 @@ export default {
mixins: [FormMixin],
props: {
initialSelectedSection: String,
},
components: {
textinput,
},
data: function() {
return {
selectedSection: null,
selectedSection: this.initialSelectedSection,
}
},