From 71ca69959f3fe186fa2461e96e5d72d9a77e6c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Mon, 7 Feb 2022 16:34:18 +0100 Subject: [PATCH] [ui] add more attribute labels --- webui/src/components/widgets/Table.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webui/src/components/widgets/Table.svelte b/webui/src/components/widgets/Table.svelte index 02d98e4..b2c708d 100644 --- a/webui/src/components/widgets/Table.svelte +++ b/webui/src/components/widgets/Table.svelte @@ -188,11 +188,15 @@ }); // Formatting & Display + // todo - grab from db const ATTRIBUTE_LABELS: { [key: string]: string } = { FILE_MIME: "MIME type", FILE_MTIME: "Last modified", FILE_SIZE: "File size", ADDED: "Added at", + LAST_VISITED: "Last visited at", + LBL: "Label", + IS: "Type", }; const VALUE_FORMATTERS: { [key: string]: (val: string | number) => string } =