Skip to content

Commit 726548f

Browse files
committed
extended details bug fix
1 parent 8b76bf8 commit 726548f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/crud/mixins/extended-controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export default {
3737
...mapMutations("crud", ["showItemDetailsDialog", "setCreatedItemStatus", "setCurrentItem"]),
3838
...mapActions("crud", ["getItemDetails"]),
3939
goToItem(item, index) {
40-
this.setCurrentItem({id:item.id, index:index})
41-
this.getItemDetails([item.id]).then(response => {
40+
this.setCurrentItem({id:item.meta.id, index:index})
41+
this.getItemDetails([item.meta.id]).then(response => {
4242
this.showItemDetailsDialog();
4343
})
4444
}

0 commit comments

Comments
 (0)