diff --git a/src/web/app/mobile/tags/drive/file-viewer.tag b/src/web/app/mobile/tags/drive/file-viewer.tag index cfa77dcb91..e38c3f317c 100644 --- a/src/web/app/mobile/tags/drive/file-viewer.tag +++ b/src/web/app/mobile/tags/drive/file-viewer.tag @@ -23,7 +23,7 @@ <span class="separator"></span> <span class="data-size">{ bytesToSize(file.datasize) }</span> <span class="separator"></span> - <span class="created-at"><mk-time time={ file.created_at }></mk-time></span> + <span class="created-at"><i class="fa fa-clock-o"></i><mk-time time={ file.created_at }></mk-time></span> </div> </div> <div class="menu"> diff --git a/src/web/app/mobile/tags/drive/file.tag b/src/web/app/mobile/tags/drive/file.tag index 1ee114fde7..a6b81f19c6 100644 --- a/src/web/app/mobile/tags/drive/file.tag +++ b/src/web/app/mobile/tags/drive/file.tag @@ -16,8 +16,8 @@ <p class="separator"></p> <p class="data-size">{ bytesToSize(file.datasize) }</p> <p class="separator"></p> - <p class="created-at"><i class="fa fa-clock-o"></i> - <mk-time time={ file.created_at }></mk-time> + <p class="created-at"> + <i class="fa fa-clock-o"></i><mk-time time={ file.created_at }></mk-time> </p> </footer> </div>