Skip to content

Commit

Permalink
hide attributes panel while loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Nov 7, 2023
1 parent 3422161 commit 857af57
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/Workflow/Editor/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</div>
</div>
<div ref="right-panel" class="unified-panel-body workflow-right p-2">
<div>
<div v-if="!initialLoading">
<FormTool
v-if="hasActiveNodeTool"
:key="activeStep.id"
Expand Down Expand Up @@ -279,6 +279,8 @@ export default {
emit("update:confirmation", false);
});
const initialLoading = ref(true);
return {
id,
connectionStore,
Expand All @@ -295,6 +297,7 @@ export default {
datatypesMapperLoading,
stateStore,
resetStores,
initialLoading,
};
},
data() {
Expand Down Expand Up @@ -372,6 +375,7 @@ export default {
this.lastQueue = new LastQueue();
await this._loadCurrent(this.id, this.version);
hide_modal();
this.initialLoading = false;
},
methods: {
onUpdateStep(step) {
Expand Down

0 comments on commit 857af57

Please sign in to comment.