mirror of
https://github.com/nextcloud/passman.git
synced 2026-02-21 09:45:31 +08:00
Added linebreak to filelist
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
c5f29483a1
commit
11005bd496
1 changed files with 8 additions and 4 deletions
|
|
@ -47,10 +47,14 @@
|
|||
|
||||
<div class="row" ng-show="credential.files.length > 0">
|
||||
<div class="col-xs-4 col-md-3 col-lg-3">{{ 'files' | translate}}</div>
|
||||
<div class="col-xs-8 col-md-9 col-lg-9"><a ng-repeat="file in credential.files"
|
||||
class="link" ng-click="downloadFile(credential, file)">
|
||||
{{file.filename}} ({{file.size | bytes}})
|
||||
</a></div>
|
||||
<div class="col-xs-8 col-md-9 col-lg-9">
|
||||
<div ng-repeat="file in credential.files">
|
||||
<a class="link" ng-click="downloadFile(credential, file)">
|
||||
{{file.filename}} ({{file.size | bytes}})
|
||||
</a>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" ng-repeat="field in credential.custom_fields">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue