Skip to content

Commit

Permalink
NAS-132484: Add stop options to containers
Browse files Browse the repository at this point in the history
  • Loading branch information
undsoft committed Nov 15, 2024
1 parent ee0b61e commit 6c3bbc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<span class="name">{{ instance().name }}</span>
</div>

<div class="cell">{{ instance().type | mapValue: virtualizationTypeMap | translate }}</div>
<div class="cell">{{ instance().type | mapValue: typeLabels | translate }}</div>

<div class="cell">{{ instance().status | mapValue: virtualizationStatusMap | translate }}</div>
<div class="cell">{{ instance().status | mapValue: statusLabels | translate }}</div>

<div class="cell actions">
@if (isStopped()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export class InstanceRowComponent {

readonly selectionChange = output();

protected readonly virtualizationTypeMap = virtualizationTypeLabels;
protected readonly virtualizationStatusMap = virtualizationStatusLabels;
protected readonly typeLabels = virtualizationTypeLabels;
protected readonly statusLabels = virtualizationStatusLabels;

constructor(
private dialog: DialogService,
Expand Down

0 comments on commit 6c3bbc6

Please sign in to comment.