Skip to content

Commit

Permalink
wip: create a style manager (#1072)
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Feb 21, 2025
1 parent 96c5c66 commit d01e4d9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions map/client/components/styles/KStylePreviewItem.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<KItem ref="item">
<template v-slot:item-avatar><div></div></template>
<template v-slot:item-content>
<div class="row">
<q-item-label>{{ name }}</q-item-label>
Expand All @@ -21,7 +20,7 @@ import { DefaultStyle } from '../../utils/index.js'
const item = ref(null)
const name = computed(() => {
return _.get(item, 'value.name', '')
return _.get(item, 'value.item.name', '')
})
const style = computed(() => {
Expand Down

0 comments on commit d01e4d9

Please sign in to comment.