Skip to content

Commit f2d280a

Browse files
Merge pull request #6890 from davidwatkins73/waltz-6889-mini-fixes
Fixing occasional failure of phys flow table
2 parents bb76dc1 + 40cc8ce commit f2d280a

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

waltz-ng/client/data-flow/components/svelte/flow-detail-tab/PhysicalFlowTable.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
{flow.logicalFlow.target.externalId}
152152
</td>
153153
<td>
154-
{flow.physicalFlow.name || flow.specification.name}
154+
{flow.physicalFlow.name || flow.specification?.name || ""}
155155
</td>
156156
<td>
157157
{flow.physicalFlow.externalId || ""}

waltz-ng/client/data-flow/components/svelte/flow-detail-tab/filters/FlowClassificationFilters.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
Filters the flows based upon their classification ratings.
5353
</div>
5454
<div style="display: flex; padding-top: 1em; padding-bottom: 1em">
55-
<table class="table table-condensed table table-hover">
55+
<table class="table table-condensed table small table-hover">
5656
<thead>
5757
<tr>
5858
<th>

waltz-ng/client/flow-classification-rule/components/svelte/FlowClassificationRuleOverview.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import SubSection from "../../../common/svelte/SubSection.svelte";
1515
import {activeSections} from "../../../dynamic-section/section-store";
1616
import {dynamicSections} from "../../../dynamic-section/dynamic-section-definitions";
17+
import Markdown from "../../../common/svelte/Markdown.svelte";
1718
1819
export let primaryEntityRef;
1920
@@ -135,7 +136,7 @@
135136
Description:
136137
</div>
137138
<div class="col-sm-8">
138-
{classificationRule?.description || "-"}
139+
<Markdown text={classificationRule?.description || "-"}/>
139140
</div>
140141
</div>
141142

0 commit comments

Comments
 (0)