mirror of
https://github.com/logseq/logseq.git
synced 2026-04-29 16:36:27 +00:00
fix: last-modified-at not being set for files
Also fixed a bug with the all-files view where the current time was being displayed instead of a file's last modified time. Also updated db graph's schema for files
This commit is contained in:
@@ -54,7 +54,7 @@
|
||||
file])]
|
||||
(when-not mobile?
|
||||
[:td [:span.text-gray-500.text-sm
|
||||
(if (zero? modified-at)
|
||||
(if (or (nil? modified-at) (zero? modified-at))
|
||||
(t :file/no-data)
|
||||
(date/get-date-time-string
|
||||
(t/to-default-time-zone (tc/to-date-time modified-at))))]])
|
||||
|
||||
Reference in New Issue
Block a user