Skip to content

Commit

Permalink
Merge pull request #6890 from davidwatkins73/waltz-6889-mini-fixes
Browse files Browse the repository at this point in the history
Fixing occasional failure of phys flow table
  • Loading branch information
jessica-woodland-scott-db authored Dec 5, 2023
2 parents bb76dc1 + 40cc8ce commit f2d280a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
{flow.logicalFlow.target.externalId}
</td>
<td>
{flow.physicalFlow.name || flow.specification.name}
{flow.physicalFlow.name || flow.specification?.name || ""}
</td>
<td>
{flow.physicalFlow.externalId || ""}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
Filters the flows based upon their classification ratings.
</div>
<div style="display: flex; padding-top: 1em; padding-bottom: 1em">
<table class="table table-condensed table table-hover">
<table class="table table-condensed table small table-hover">
<thead>
<tr>
<th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -135,7 +136,7 @@
Description:
</div>
<div class="col-sm-8">
{classificationRule?.description || "-"}
<Markdown text={classificationRule?.description || "-"}/>
</div>
</div>
Expand Down

0 comments on commit f2d280a

Please sign in to comment.