Fix loading of i icon on protocol [SCI-8051] (#5061)

This commit is contained in:
ajugo 2023-03-03 09:55:42 +01:00 committed by GitHub
parent 4fb18a8018
commit 8b1bc51950
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -345,7 +345,6 @@ function init() {
initEditProtocolDescription();
initLinkUpdate();
initLoadFromRepository();
refreshProtocolStatusBar();
initImport();
initProtocolSectionOpenEvent();
initDetailsDropdown();

View file

@ -206,6 +206,9 @@
created() {
$.get(this.protocolUrl, (result) => {
this.protocol = result.data;
this.$nextTick(() => {
this.refreshProtocolStatus();
});
$.get(this.urls.steps_url, (result) => {
this.steps = result.data
})