Skip to content

Commit

Permalink
handle migration-runnable status
Browse files Browse the repository at this point in the history
  • Loading branch information
ngottlieb committed Jul 4, 2024
1 parent 94194ad commit 7d9d6fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/app/assets/scss/abstracts/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ $flow-map: (
"above-recommended": $flow-high,
"high-runnable": $high-runnable,
"medium-runnable": $med-runnable,
"migration-runnable": $med-runnable, // TODO: a temporary solution for handling legacy data
"low-runnable": $low-runnable,
"below-recommended": $flow-low,
"stale": #dfe3e6 // use ui-03 for unknown/stale
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
/>
<cv-tag
:class="gaugeCorrelation.status.status"
:label="gaugeCorrelation.status.status.replace('-', ' ')"
/>
:label="gaugeCorrelation.status.status.replace('-', ' ').replace('migration', '')"
/> <!-- TODO: reference to "migration" above handles existing legacy migration-runnable data -->
</td>
</tr>
</template>
Expand Down

0 comments on commit 7d9d6fb

Please sign in to comment.