Skip to content

Commit 87d18cb

Browse files
committed
remove time column? I guess?
1 parent c828ca7 commit 87d18cb

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/features/mass_privater/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99
.mass-privater-failed-table {
1010
display: grid;
11-
grid: auto-flow / auto auto 1fr;
11+
grid: auto-flow / auto 1fr;
1212
gap: 1ch;
1313
align-items: center;
1414
}

src/features/mass_privater/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ const showPostsNotFound = ({ name }) =>
155155
});
156156

157157
const dateFormat = new Intl.DateTimeFormat(document.documentElement.lang, { dateStyle: 'medium' });
158-
const timeFormat = new Intl.DateTimeFormat(document.documentElement.lang, { timeStyle: 'short' });
159158

160159
const editPosts = async ({ mode, uuid, name, tags, before }) => {
161160
const gatherStatus = dom('span', null, null, ['Gathering posts...']);
@@ -168,9 +167,6 @@ const editPosts = async ({ mode, uuid, name, tags, before }) => {
168167
dom('div', { class: 'date' }, null, [
169168
dom('a', { href: `/@${blogName}/${id}`, target: '_blank' }, null, [dateFormat.format(new Date(timestamp * 1000))]),
170169
]),
171-
dom('div', { class: 'time' }, null, [
172-
timeFormat.format(new Date(timestamp * 1000)),
173-
]),
174170
dom('div', { class: 'summary' }, null, [
175171
summary.replaceAll('\n', ' '),
176172
]),

0 commit comments

Comments
 (0)