kanban > steps : add dtl indicator

This commit is contained in:
isUnknown 2025-01-23 17:39:40 +01:00
parent 7038185e7f
commit 30fbc0e4e8
9 changed files with 222 additions and 156 deletions

View file

@ -24,16 +24,18 @@
images[0].comments.length > 1 ? "s" : ""
}}
</footer> -->
<div v-if="isDesignToLightStep(step)">Design to light</div>
</article>
</template>
<script setup>
import DateTime from "./DateTime.vue";
import { usePageStore } from "../../../stores/page";
import { useDesignToLightStore } from "../../../stores/designToLight";
const { images, step, uri } = defineProps({
images: Array,
step: Object,
uri: String,
});
const { page } = usePageStore();
const { isDesignToLightStep } = useDesignToLightStore();
</script>