Skip to content

Commit

Permalink
NAS-131013: Migrate more components to signal inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
undsoft committed Sep 9, 2024
1 parent b7f30b8 commit 96bc334
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class DatasetDetailsCardComponent {

protected readonly datasetCompression = computed(() => {
return this.dataset()?.compression?.source === ZfsPropertySource.Inherited
? `Inherit (${this.dataset().compression?.value})`
? this.translate.instant('Inherit ({value})', { value: this.dataset().compression?.value })
: this.dataset().compression?.value;
});

Expand Down

0 comments on commit 96bc334

Please sign in to comment.