+
.
:previous-state="item.previousJob?.node?.state"
/>
-
{{ item.task.name }}
+ {{ item.task.name }}
+
@@ -110,13 +118,17 @@ import {
datetimeComparator,
numberComparator,
} from '@/components/cylc/table/sort'
-import { dtMean } from '@/utils/tasks'
+import {
+ dtMean,
+ isFlowNone,
+} from '@/utils/tasks'
import { useCyclePointsOrderDesc } from '@/composables/localStorage'
import {
initialOptions,
updateInitialOptionsEvent,
useInitialOptions
} from '@/utils/initialOptions'
+import FlowNumsChip from '@/components/cylc/common/FlowNumsChip.vue'
export default {
name: 'TableComponent',
@@ -132,6 +144,7 @@ export default {
},
components: {
+ FlowNumsChip,
Task,
Job,
},
@@ -243,6 +256,7 @@ export default {
icons: {
mdiChevronDown
},
+ isFlowNone,
itemsPerPageOptions: [
{ value: 10, title: '10' },
{ value: 20, title: '20' },
diff --git a/src/components/cylc/tree/TreeItem.vue b/src/components/cylc/tree/TreeItem.vue
index 8a7ecad70..da3b1fd0c 100644
--- a/src/components/cylc/tree/TreeItem.vue
+++ b/src/components/cylc/tree/TreeItem.vue
@@ -19,6 +19,8 @@ along with this program. If not, see .
.
v-if="renderExpandCollapseBtn"
aria-label="Expand/collapse"
class="node-expand-collapse-button flex-shrink-0"
- @click="toggleExpandCollapse"
+ @click="toggleExpandCollapse()"
:style="expandCollapseBtnStyle"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
@@ -63,7 +65,11 @@ along with this program. If not, see
.
/>
{{ node.name }}
-
+
.
/>
{{ node.name }}
-
+
+
.
class="ml-2 bg-grey text-white"
size="small"
link
- @click="toggleExpandCollapse"
+ @click="toggleExpandCollapse()"
>
+{{ jobMessageOutputs.length - 5 }}
@@ -175,20 +182,27 @@ along with this program. If not, see .