Forráskód Böngészése

Merge pull request #5567 from payne92/pr_dev3

Change file mod time hover to use local/locale time format
Steven Silvester 6 éve
szülő
commit
745d230a09
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      packages/filebrowser/src/listing.ts

+ 1 - 1
packages/filebrowser/src/listing.ts

@@ -1759,7 +1759,7 @@ export namespace DirListing {
       let modTitle = '';
       if (model.last_modified) {
         modText = Time.formatHuman(new Date(model.last_modified));
-        modTitle = Time.format(new Date(model.last_modified));
+        modTitle = Time.format(new Date(model.last_modified), 'lll');
       }
       modified.textContent = modText;
       modified.title = modTitle;