fix: error and wrong display condition
This commit is contained in:
parent
da0b765f81
commit
417b1d8a93
1 changed files with 3 additions and 3 deletions
|
|
@ -277,10 +277,10 @@ async function triggerViewFile(opt: {
|
||||||
<template v-for="(value, i) in flow.step" :key="value.id">
|
<template v-for="(value, i) in flow.step" :key="value.id">
|
||||||
<button
|
<button
|
||||||
v-if="
|
v-if="
|
||||||
workList?.every(
|
workList?.some(
|
||||||
(v) =>
|
(v) =>
|
||||||
v.productService.work?.attributes.workflowStep[i]
|
v.productService.work?.attributes?.workflowStep?.[i]
|
||||||
.attributes.properties.length > 0,
|
?.attributes.properties.length > 0,
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
class="status-color q-pa-sm bordered row items-center cursor-pointer no-wrap"
|
class="status-color q-pa-sm bordered row items-center cursor-pointer no-wrap"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue