This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
>
|
||||
<v-card>
|
||||
<v-card-title>{{ $ay.t("Extensions") }}</v-card-title>
|
||||
<v-card-subtitle class="mt-1"
|
||||
<v-card-subtitle class="mt-1" v-bind:class="subTitleClass()"
|
||||
>{{ $ay.t("SelectedItems") }}
|
||||
{{ selectedItems.length }}</v-card-subtitle
|
||||
>
|
||||
@@ -46,6 +46,12 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
subTitleClass() {
|
||||
if (this.selectedItems.length < 1) {
|
||||
return "warning--text";
|
||||
}
|
||||
return "primary--text";
|
||||
},
|
||||
open() {
|
||||
this.isVisible = true;
|
||||
return new Promise((resolve, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user