mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
feat(webui): enable grouping for authentication activity table
This commit is contained in:
parent
a56c2f1d2d
commit
2a19399347
1 changed files with 2 additions and 1 deletions
|
|
@ -8,6 +8,7 @@
|
|||
sort-by="dateTime"
|
||||
:sort-desc="true"
|
||||
multi-sort
|
||||
show-group-by
|
||||
class="elevation-1"
|
||||
:footer-props="{
|
||||
itemsPerPageOptions: [20, 50, 100]
|
||||
|
|
@ -65,7 +66,7 @@ export default Vue.extend({
|
|||
{text: this.$t('authentication_activity.user_agent').toString(), value: 'userAgent'},
|
||||
{text: this.$t('authentication_activity.success').toString(), value: 'success'},
|
||||
{text: this.$t('authentication_activity.error').toString(), value: 'error'},
|
||||
{text: this.$t('authentication_activity.datetime').toString(), value: 'dateTime'},
|
||||
{text: this.$t('authentication_activity.datetime').toString(), value: 'dateTime', groupable: false},
|
||||
)
|
||||
return headers
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue