ui: drop the Decoded FCI caption in the file manager info block

The decoded FCI items now follow the FID/type/size line directly; the
snapshot detail view keeps its caption. Test updated to assert the
caption is absent; SW cache v120 -> v121.
This commit is contained in:
2026-09-12 21:59:41 +03:00
parent 2ec7a2d6c0
commit e0e86e31af
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -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;