mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-07 13:44:23 +08:00
Fix loading of i icon on protocol [SCI-8051] (#5061)
This commit is contained in:
parent
4fb18a8018
commit
8b1bc51950
2 changed files with 3 additions and 1 deletions
|
@ -345,7 +345,6 @@ function init() {
|
|||
initEditProtocolDescription();
|
||||
initLinkUpdate();
|
||||
initLoadFromRepository();
|
||||
refreshProtocolStatusBar();
|
||||
initImport();
|
||||
initProtocolSectionOpenEvent();
|
||||
initDetailsDropdown();
|
||||
|
|
|
@ -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
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue