Fixed items not animating correctly on insert
This commit is contained in:
@@ -18,7 +18,7 @@
|
|||||||
v-for="item in dataItems"
|
v-for="item in dataItems"
|
||||||
:key="item._id"
|
:key="item._id"
|
||||||
class="item"
|
class="item"
|
||||||
:data-id="`item-list-tile-${item._id}`"
|
:data-id="item._id"
|
||||||
:model="item"
|
:model="item"
|
||||||
@click="clickProperty(item._id)"
|
@click="clickProperty(item._id)"
|
||||||
/>
|
/>
|
||||||
@@ -74,7 +74,7 @@ export default {
|
|||||||
clickProperty(_id){
|
clickProperty(_id){
|
||||||
this.$store.commit('pushDialogStack', {
|
this.$store.commit('pushDialogStack', {
|
||||||
component: 'creature-property-dialog',
|
component: 'creature-property-dialog',
|
||||||
elementId: `item-list-tile-${_id}`,
|
elementId: _id,
|
||||||
data: {_id},
|
data: {_id},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user