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

@ -31,12 +31,14 @@
}}
</router-link>
</footer>
<div v-if="isDesignToLightStep(step)">Design to light</div>
</article>
</template>
<script setup>
import { useRoute } from "vue-router";
import DateTime from "./DateTime.vue";
import { computed } from "vue";
import { useDesignToLightStore } from "../../../stores/designToLight";
const { step, pdf, index } = defineProps({
step: Object,
@ -48,6 +50,8 @@ const { step, pdf, index } = defineProps({
},
});
const { isDesignToLightStep } = useDesignToLightStore();
const route = useRoute();
const uri = computed(() => {