From 7264f09037fb809ec9e4cea892cd4d6a6d2e08df Mon Sep 17 00:00:00 2001 From: sunhao Date: Fri, 22 Mar 2024 14:33:13 +0800 Subject: [PATCH] * index: fix link in left menu. --- module/index/js/index.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/index/js/index.ui.js b/module/index/js/index.ui.js index a1091e3757..55d3c9c736 100644 --- a/module/index/js/index.ui.js +++ b/module/index/js/index.ui.js @@ -633,7 +633,7 @@ function initAppsMenu(items) const $link= $('') .attr('data-app', item.code) - .attr('href', item.url ? ($.createLink('index', 'index') + '#app=' + item.code) : '#') + .attr('href', item.url || '#') .addClass('rounded show-in-app') .html(item.title);