Skip to content

Commit 3aadece

Browse files
Merge pull request #107 from JSON-ms/dev
allow endpoint creation
2 parents c32c926 + f822d0c commit 3aadece

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/StructureEditor.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ const sections = ref([{
9797
if (!globalStore.session.loggedIn) {
9898
return 'Must be logged in';
9999
}
100-
if (!structure.value.endpoint) {
101-
return 'Must connect an endpoint to your project'
102-
}
100+
// if (!structure.value.endpoint) {
101+
// return 'Must connect an endpoint to your project'
102+
// }
103103
return 'Unknown'
104104
},
105-
disabled: () => !globalStore.session.loggedIn || !structure.value.endpoint
105+
disabled: () => !globalStore.session.loggedIn// || !structure.value.endpoint
106106
}, {
107107
key: 'settings',
108108
icon: 'mdi-cog',

0 commit comments

Comments
 (0)