Commit b8f3d41f31a29956d2001f5163c35b17a0b6663f
Committed by
GitHub
Merge pull request #5266 from ArtemDzhereleiko/bug-fix/alarm-rules/key-type
[3.2.2] Alarm rules fix translation key type after updating key filter
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -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)" | ... | ... |