mirror of
https://github.com/filegator/filegator.git
synced 2025-08-16 14:23:59 +02:00
fixes #46
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
</b-table-column>
|
||||
|
||||
<b-table-column :label="lang('Role')" field="role" sortable>
|
||||
{{ props.row.role }}
|
||||
{{ lang(capitalize(props.row.role)) }}
|
||||
</b-table-column>
|
||||
|
||||
<b-table-column>
|
||||
|
@@ -8,7 +8,7 @@
|
||||
<section class="modal-card-body">
|
||||
<b-input ref="input" v-model="term" @input="searchFiles" :placeholder="lang('Name')" />
|
||||
<br>
|
||||
<b-loading :is-full-page="false" :active.sync="searching"></b-loading>
|
||||
<b-loading :is-full-page="false" :active.sync="searching" />
|
||||
<ul ref="results">
|
||||
<li v-for="(item, index) in results" :key="index">
|
||||
<a @click="select(item)">{{ item.file.path }}</a>
|
||||
|
@@ -48,7 +48,7 @@
|
||||
{{ lang('Upload') }}
|
||||
</b-checkbox>
|
||||
<b-checkbox v-model="permissions.download">
|
||||
{{ lang('Download') }}
|
||||
{{ lang('Download permission') }}
|
||||
</b-checkbox>
|
||||
<b-checkbox v-model="permissions.batchdownload">
|
||||
{{ lang('Batch Download') }}
|
||||
|
Reference in New Issue
Block a user