Suppress 'Last File Received' if a node is folder master (fixes #1472)

This commit is contained in:
Johan Vromans 2015-03-17 08:44:17 +01:00 committed by Jakob Borg
parent 3a35b8b26c
commit 8d20923881
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@
<th><span class="glyphicon glyphicon-share-alt"></span>&emsp;<span translate>Shared With</span></th>
<td class="text-right">{{sharesFolder(folder)}}</td>
</tr>
<tr ng-if="folderStats[folder.id].lastFile">
<tr ng-if="!folder.readOnly && folderStats[folder.id].lastFile">
<th><span class="glyphicon glyphicon-transfer"></span>&emsp;<span translate>Last File Received</span></th>
<td class="text-right">
<span title="{{folderStats[folder.id].lastFile.filename}} @ {{folderStats[folder.id].lastFile.at | date:'yyyy-MM-dd HH:mm'}}">

File diff suppressed because one or more lines are too long