-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update licence picker for admin (#200)
* asset filters from common * translations * update deps * update authors and keywords dropdown * update authors add reviewed flag * update deps * update grid item width * add refresh button to upload queue item * author and keyword dropdown update * fix * main file single use * author and keyword validations * update deps * fix * fix * update deps * update deps * update deps * fix dialog for licence switch * fix dialog for licence switch * fix dialog for licence switch * increase selected icon * update deps * cached users moved to common admin * licence switcher updated --------- Co-authored-by: volar <[email protected]>
- Loading branch information
Showing
17 changed files
with
221 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script setup lang="ts"> | ||
import { useI18n } from 'vue-i18n' | ||
const modelValue = defineModel<boolean>({ required: true }) | ||
const { t } = useI18n() | ||
</script> | ||
|
||
<template> | ||
<div | ||
class="cursor-pointer" | ||
@click.stop="modelValue = !modelValue" | ||
> | ||
<VIcon | ||
class="mr-2" | ||
size="small" | ||
:icon="modelValue ? 'mdi-chevron-double-up' : 'mdi-chevron-double-down'" | ||
/> | ||
{{ t('common.button.advanced') }} | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.