Skip to content

Commit

Permalink
Merge pull request #553 from IshavSohal/issue-521
Browse files Browse the repository at this point in the history
Delay metadata component load until after config is received
  • Loading branch information
szczz authored Mar 6, 2025
2 parents 7a87131 + 087f988 commit 5b4a912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/metadata-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,7 @@ export default class MetadataEditorV extends Vue {
this.extendSession();
this.error = false;
this.warning = 'none';
this.loadStatus = 'loaded';
});
});
}
Expand Down Expand Up @@ -1209,7 +1210,6 @@ export default class MetadataEditorV extends Vue {
} else {
res.json().then((json) => {
this.storylineHistory = json;
this.loadStatus = 'loaded';
});
}
});
Expand Down

0 comments on commit 5b4a912

Please sign in to comment.