Commit 5a4e1b0f39e55bf745369b36549c33bf1405c7b0

Authored by Igor Kulikov
Committed by GitHub
2 parents a121df1d 9d451bc1

Merge pull request #4233 from hardshell/improvment/dialog-header-entity-names

added entity names to dialog headers
... ... @@ -18,7 +18,7 @@
18 18 <form [formGroup]="widgetFormGroup" (ngSubmit)="add()" style="width: 900px;">
19 19 <mat-toolbar color="primary">
20 20 <h2 translate>widget.add</h2>
21   - <span fxFlex></span>
  21 + <span fxFlex>: {{data.widgetInfo.widgetName}}</span>
22 22 <div [tb-help]="helpLinkIdForWidgetType()"></div>
23 23 <button mat-icon-button
24 24 (click)="cancel()"
... ...
... ... @@ -18,7 +18,7 @@
18 18 <form (ngSubmit)="add()" style="min-width: 650px;">
19 19 <mat-toolbar color="primary">
20 20 <h2 translate>rulenode.add</h2>
21   - <span fxFlex></span>
  21 + <span fxFlex>: {{ruleNode.component.name}}</span>
22 22 <div [tb-help]="helpLinkIdForRuleNodeType()"></div>
23 23 <button mat-icon-button
24 24 (click)="cancel()"
... ...