Skip to content
Snippets Groups Projects

WS-561: Capability definition UI simplification

Merged Nathan Hertz requested to merge WS-461-capability-step-sequence-overhaul into main
3 files
+ 15
9
Compare changes
  • Side-by-side
  • Inline
Files
3
<div id="definition-container">
<h5 id="capability-name"><strong>{{ capability.name.toUpperCase() }}</strong></h5>
<div id="definition-container" class="container-fluid rounded-top rounded-3 py-2">
<!-- <h5 id="capability-name"><strong>{{ capability.name.toUpperCase() }}</strong></h5>-->
<div id="step-sequence" class="container-fluid">
<div id="step-sequence">
<div
class="capability-step row rounded rounded-lg mb-1 py-2 align-items-center"
class="capability-step row rounded rounded-lg my-2 mx-1 py-2 align-items-center"
*ngFor="let step of capabilityStepList"
>
<span class="col text-left px-3">{{ step[0].toUpperCase() }} <strong *ngIf="step[1] !== undefined">{{ step[1].toUpperCase() }}</strong></span>
<span class="col text-left px-3"
>{{ step[0].toUpperCase() }}
<strong class="pl-2" *ngIf="step[1] !== undefined">{{
step[1].toUpperCase()
}}</strong></span
>
</div>
</div>
</div>
Loading