This commit is contained in:
@@ -17,11 +17,11 @@
|
||||
<v-card-text style="height: 500px;">
|
||||
<v-list>
|
||||
<v-list-item
|
||||
v-for="item in availableItems"
|
||||
v-for="item in availableItems()"
|
||||
:key="item.id"
|
||||
@click="addItem(item.id)"
|
||||
>
|
||||
<v-list-item-title>{{ item.name }}</v-list-item-title>
|
||||
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-card-text>
|
||||
@@ -136,7 +136,9 @@ export default {
|
||||
item
|
||||
);
|
||||
},
|
||||
availableItems: function() {},
|
||||
availableItems: function() {
|
||||
return DashRegistry.availableItems(); //minus effectiveView
|
||||
},
|
||||
async getDataFromApi() {
|
||||
let vm = this;
|
||||
window.$gz.form.setFormState({
|
||||
|
||||
Reference in New Issue
Block a user