From 680c5a65e33bde47e9f47f71397f91a8c68d6b50 Mon Sep 17 00:00:00 2001 From: guofeilong Date: Thu, 28 Jul 2022 09:36:35 +0000 Subject: [PATCH] * Fix bug unrefresh while add action to workFlow --- module/index/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/index/js/index.js b/module/index/js/index.js index 2c8f76f6d9..d1a2c7a9b3 100644 --- a/module/index/js/index.js +++ b/module/index/js/index.js @@ -266,7 +266,7 @@ /* Show page app and update iframe source */ var iframe = app.$iframe[0]; var isSameUrl = iframe && url && iframe.contentWindow.location.href.endsWith(url); - if (url && (!isSameUrl || forceReload)) + if (url && (!isSameUrl || forceReload !== false)) { app.$app.toggleClass('open-from-hidden', app.$app.is(':hidden')) reloadApp(appCode, url, true);