Fixed buffs not crystalising variables correctly

This commit is contained in:
Stefan Zermatten
2022-03-04 12:51:06 +02:00
parent 4b4e3a8928
commit 7544243640
2 changed files with 21 additions and 2 deletions

View File

@@ -3,6 +3,12 @@
:is="treeNodeView"
:model="model"
:selected="selected"
:class="{
'inactive': model.inactive,
'by-ancestor': model.deactivatedByAncestor,
'by-self': model.deactivatedBySelf,
'by-toggle': model.deactivatedByToggle,
}"
/>
</template>
@@ -29,3 +35,9 @@ export default {
}
}
</script>
<style lang="css" scoped>
.inactive: {
background: red;
}
</style>