From afda472c9ede3de79d875919acb90b0745718732 Mon Sep 17 00:00:00 2001 From: David Watkins Date: Mon, 4 Dec 2023 13:51:05 +0000 Subject: [PATCH 1/3] Fixing occasional failure of phys flow table #6889 --- .../components/svelte/flow-detail-tab/PhysicalFlowTable.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/PhysicalFlowTable.svelte b/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/PhysicalFlowTable.svelte index bbba37688e..a2b0b52417 100644 --- a/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/PhysicalFlowTable.svelte +++ b/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/PhysicalFlowTable.svelte @@ -151,7 +151,7 @@ {flow.logicalFlow.target.externalId} - {flow.physicalFlow.name || flow.specification.name} + {flow.physicalFlow.name || flow.specification?.name || ""} {flow.physicalFlow.externalId || ""} From 2b6bbfb2ced626398bf527d621287e9422bdada9 Mon Sep 17 00:00:00 2001 From: David Watkins Date: Mon, 4 Dec 2023 14:02:23 +0000 Subject: [PATCH 2/3] Fixing occasional failure of phys flow table #6889 --- .../flow-detail-tab/filters/FlowClassificationFilters.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/filters/FlowClassificationFilters.svelte b/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/filters/FlowClassificationFilters.svelte index c5a0622bf1..42bc0c2fe8 100644 --- a/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/filters/FlowClassificationFilters.svelte +++ b/waltz-ng/client/data-flow/components/svelte/flow-detail-tab/filters/FlowClassificationFilters.svelte @@ -52,7 +52,7 @@ Filters the flows based upon their classification ratings.
- +
From 40cc8cea2a757b578a9eddb3ad02b09f8505aad2 Mon Sep 17 00:00:00 2001 From: David Watkins Date: Tue, 5 Dec 2023 10:02:36 +0000 Subject: [PATCH 3/3] Adding markdown support for FCR's #6889 --- .../components/svelte/FlowClassificationRuleOverview.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/waltz-ng/client/flow-classification-rule/components/svelte/FlowClassificationRuleOverview.svelte b/waltz-ng/client/flow-classification-rule/components/svelte/FlowClassificationRuleOverview.svelte index 195597ff90..2b56fb8bbf 100644 --- a/waltz-ng/client/flow-classification-rule/components/svelte/FlowClassificationRuleOverview.svelte +++ b/waltz-ng/client/flow-classification-rule/components/svelte/FlowClassificationRuleOverview.svelte @@ -14,6 +14,7 @@ import SubSection from "../../../common/svelte/SubSection.svelte"; import {activeSections} from "../../../dynamic-section/section-store"; import {dynamicSections} from "../../../dynamic-section/dynamic-section-definitions"; + import Markdown from "../../../common/svelte/Markdown.svelte"; export let primaryEntityRef; @@ -135,7 +136,7 @@ Description:
- {classificationRule?.description || "-"} +