From 5cc9495ae181ebb8de60de4955ae2d2a7d31f7c2 Mon Sep 17 00:00:00 2001 From: ansuz Date: Wed, 11 Jan 2023 13:11:12 +0530 Subject: [PATCH] fix broken links in checkup page (typo) and check whether customize/pages/index.js has been modified relative to customize.dist/... --- www/checkup/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/checkup/main.js b/www/checkup/main.js index 1b6e69687..47cd8807c 100644 --- a/www/checkup/main.js +++ b/www/checkup/main.js @@ -1530,6 +1530,7 @@ define([ [ 'application_config.js', 'pages.js', + 'pages/index.js', ].forEach(resource => { // sort this above errors and warnings and style in a neutral color. var A = `/customize.dist/${resource}`; @@ -1712,7 +1713,7 @@ define([ var href = `/customize/${asset}`; return h('li', [ h('a', { - href: `href?${+new Date()}`, + href: `${href}?${+new Date()}`, target: '_blank', }, href), ]);