Skip to content

Commit

Permalink
refactor(files): undo template update
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmcg committed Apr 7, 2022
1 parent 39030f9 commit 134923a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/views/files/view/View.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div id="view-file">
<div class="file-nav">
<div class="file-info">
<TypographyTitle :text="fileName" :size="6" />
<TypographyTitle :text="file.name" :size="6" />
<TypographyText :text="file.type" :size="6" />
<TypographyText :text="$filesize(file.size)" :size="6" />
<TypographyText :text="$dayjs(file.modified).fromNow()" :size="6" />
Expand Down Expand Up @@ -49,7 +49,7 @@
>
<download-icon size="1x" class="file-icon" />
</a>
<TypographyTitle :size="4" :text="fileName" />
<TypographyTitle :size="4" :text="file.name" />
<TypographySubtitle :size="6" :text="file.type" />
<TypographySubtitle :text="$filesize(file.size)" :size="6" />
<TypographySubtitle :text="$dayjs(file.modified).fromNow()" :size="6" />
Expand Down

0 comments on commit 134923a

Please sign in to comment.