Commit aaaf4b177f670d7f64779a4fb8a378256af47376

Authored by ArtemDzhereleiko
1 parent 75817a16

Fix translation key type after updating key filter

... ... @@ -43,7 +43,7 @@
43 43 <div fxLayout="column" fxFlex="92">
44 44 <div fxLayout="row" fxLayoutAlign="start center">
45 45 <div fxFlex>{{ keyFilterControl.value.key.key }}</div>
46   - <div fxFlex translate>{{ entityKeyTypeTranslations.get(keyFilterControl.value.key.type) }}</div>
  46 + <div fxFlex>{{ entityKeyTypeTranslations.get(keyFilterControl.value.key.type) | translate }}</div>
47 47 <button mat-icon-button color="primary"
48 48 type="button"
49 49 (click)="editKeyFilter($index)"
... ...