This commit is contained in:
2020-07-07 13:46:13 +00:00
parent 86631f95bb
commit 6aa7ac68af
3 changed files with 12 additions and 15 deletions

View File

@@ -159,6 +159,7 @@ export default {
"RecordHistory",
"Search",
"TypeToSearchOrAdd",
"SelectedItems",
"NoData",
"ErrorFieldLengthExceeded",
"ErrorStartDateAfterEndDate",

View File

@@ -8,12 +8,11 @@
>
<v-card>
<v-card-title>{{ $ay.t("Extensions") }}</v-card-title>
todo: show number of selected items, maybe id's? todo: find a name instead
of plugins and maybe alternate icon has to make sense both with accounting
and mass tagging and any possible grab bag ad-hoc stuff Joyce suggested
utilities, that might work, is accounting a utility? More kind of works
too as it implies you can do More
<v-divider></v-divider>
<v-card-subtitle class="mt-1"
>{{ $ay.t("SelectedItems") }}
{{ selectedItems.length }}</v-card-subtitle
>
<!-- <v-divider></v-divider> -->
<v-card-text>
<v-expansion-panels focusable>
<v-expansion-panel v-for="(item, i) in 5" :key="i">
@@ -32,10 +31,11 @@
</v-expansion-panel>
</v-expansion-panels>
</v-card-text>
<v-divider></v-divider>
<!-- <v-divider></v-divider> -->
<v-card-actions>
<v-btn text @click="cancel()">Cancel</v-btn>
<v-btn text @click="ok()">Save</v-btn>
<v-btn text @click="close()" color="primary">{{
$ay.t("Close")
}}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
@@ -75,11 +75,7 @@ export default {
this.reject = reject;
});
},
ok() {
this.isVisible = false;
this.resolve(null);
},
cancel() {
close() {
this.isVisible = false;
this.resolve(null);
}

View File

@@ -115,7 +115,7 @@ function generateMenu(vm) {
});
menuOptions.menuItems.push({
title: "More",
title: "Extensions",
icon: "fa-puzzle-piece",
key: FORM_KEY + ":plugins",
vm: vm