Skip to content

Commit 8a62b86

Browse files
authored
Merge pull request #661 from favicode/fix/fields-configuration-when-menu-is-open
Run init method if Fastly configuration tab is already open
2 parents 2d9b9e9 + a24b643 commit 8a62b86

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

view/adminhtml/web/js/init.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ define([
1414
let isAlreadyConfigured = true;
1515
let serviceStatus = false;
1616

17+
if (fastlyFieldset.is(':visible')) {
18+
init();
19+
}
20+
1721
/**
1822
* Fastly Configuration head on click event
1923
*/
@@ -205,4 +209,4 @@ define([
205209
}
206210
});
207211
}
208-
});
212+
});

0 commit comments

Comments
 (0)