diff --git a/frontend/index.html b/frontend/index.html index 931c67e..6f707ad 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -6137,8 +6137,7 @@ function pysimFsInfoHtml(sel) { let html = ''; if (attrs.length) html += '
' + attrs.join(' ยท ') + '
'; if (sel.fci_hex) { - html += '
' + esc(t('Decoded FCI')) + '
'; - html += '
' + profilerFciPreviewItems(sel.fci_hex) + '
'; + html += '
' + profilerFciPreviewItems(sel.fci_hex) + '
'; } return html; } diff --git a/frontend/sw.js b/frontend/sw.js index 5f6288d..281686d 100644 --- a/frontend/sw.js +++ b/frontend/sw.js @@ -1,4 +1,4 @@ -const CACHE = 'otaman-v120'; +const CACHE = 'otaman-v121'; const URLS = [ 'index.html', 'help.html', diff --git a/frontend/tests/profiler.test.js b/frontend/tests/profiler.test.js index ca18ac3..9383351 100644 --- a/frontend/tests/profiler.test.js +++ b/frontend/tests/profiler.test.js @@ -707,7 +707,7 @@ test('pysimFsInfoHtml shows FID, type, size and the decoded FCI', () => { assert.ok(out.includes('Size: 75'), out); assert.ok(out.includes('Record length: 15'), out); assert.ok(out.includes('Record count: 5'), out); - assert.ok(out.includes('Decoded FCI'), out); + assert.ok(!out.includes('Decoded FCI'), out); assert.ok(out.includes('File descriptor'), out); assert.ok(out.includes('75 bytes'), out); delete global.t;