Skip to content

Commit 2c50051

Browse files
committed
Fix scenarios dashboard
1 parent eacaae6 commit 2c50051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/js/desktop/pages/dashboard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function updateScenarioControls(scenarioData) {
265265
}
266266
// Status Label
267267
stateField.classList.remove('label-danger', 'label-info', 'label-success', 'label-warning', 'label-default');
268-
if (isset(scenarioData.active) && scenarioData.active !== 1) {
268+
if (isset(scenarioData.active) && scenarioData.active != 1) {
269269
stateField.textContent = '';
270270
scenarioContainer.style.opacity = 0.6;
271271
$(enableButton).show();

0 commit comments

Comments
 (0)