diff --git a/src/network/html/FilesPage.html b/src/network/html/FilesPage.html
index e39ff6fa..288a6a07 100644
--- a/src/network/html/FilesPage.html
+++ b/src/network/html/FilesPage.html
@@ -247,7 +247,6 @@
color: white;
border-radius: 10px;
font-size: 0.75em;
- margin-left: 8px;
}
.folder-badge {
display: inline-block;
@@ -256,7 +255,6 @@
color: white;
border-radius: 10px;
font-size: 0.75em;
- margin-left: 8px;
}
.file-icon {
margin-right: 8px;
@@ -1262,7 +1260,6 @@
.folder-badge {
padding: 2px 5px;
font-size: 0.65em;
- margin-left: 4px;
}
.contents-header {
margin-bottom: 8px;
@@ -1913,8 +1910,8 @@
// Checkbox cell + folder row
fileTableContent += `
`;
fileTableContent += ` | `;
- fileTableContent += `📁${escapeHtml(file.name)}FOLDER | `;
- fileTableContent += 'Folder | ';
+ fileTableContent += `📁${escapeHtml(file.name)} | `;
+ fileTableContent += 'FOLDER | ';
fileTableContent += '- | ';
fileTableContent += ` | `;
fileTableContent += '
';
@@ -1928,9 +1925,8 @@
fileTableContent += ` | `;
fileTableContent += `${file.isEpub ? '📗' : '📄'}`;
fileTableContent += `${escapeHtml(file.name)}`;
- if (file.isEpub) fileTableContent += 'EPUB';
fileTableContent += ' | ';
- fileTableContent += `${file.name.split('.').pop().toUpperCase()} | `;
+ fileTableContent += file.isEpub ? 'EPUB | ' : `${escapeHtml(file.name.split('.').pop().toUpperCase())} | `;
fileTableContent += `${formatFileSize(file.size)} | `;
fileTableContent += ``;
fileTableContent += ``;
|