From bedab9c780dd2ea29180c1d3675f33f0e47af5a7 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 3 Sep 2024 18:17:01 +0300 Subject: [PATCH] fix diff --- js/diff.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/diff.js b/js/diff.js index 62e3cd703e..e0eaeae922 100644 --- a/js/diff.js +++ b/js/diff.js @@ -573,7 +573,7 @@ class Diff const resolveBundledItemDest = item => { if (item.amdId) { - return `'client/lib/original/${item.amdId}.js`; + return `client/lib/original/${item.amdId}.js`; } return 'client/lib/original/' + item.src.split('/').pop();