Commit 9d451bc11b3b03337fdc074812f358f3f9e26005
1 parent
10ddb5f8
added entity names to dialog headers in
1) add rule node dialog component 2) add widget dialog component
Showing
2 changed files
with
2 additions
and
2 deletions
@@ -18,7 +18,7 @@ | @@ -18,7 +18,7 @@ | ||
18 | <form [formGroup]="widgetFormGroup" (ngSubmit)="add()" style="width: 900px;"> | 18 | <form [formGroup]="widgetFormGroup" (ngSubmit)="add()" style="width: 900px;"> |
19 | <mat-toolbar color="primary"> | 19 | <mat-toolbar color="primary"> |
20 | <h2 translate>widget.add</h2> | 20 | <h2 translate>widget.add</h2> |
21 | - <span fxFlex></span> | 21 | + <span fxFlex>: {{data.widgetInfo.widgetName}}</span> |
22 | <div [tb-help]="helpLinkIdForWidgetType()"></div> | 22 | <div [tb-help]="helpLinkIdForWidgetType()"></div> |
23 | <button mat-icon-button | 23 | <button mat-icon-button |
24 | (click)="cancel()" | 24 | (click)="cancel()" |
@@ -18,7 +18,7 @@ | @@ -18,7 +18,7 @@ | ||
18 | <form (ngSubmit)="add()" style="min-width: 650px;"> | 18 | <form (ngSubmit)="add()" style="min-width: 650px;"> |
19 | <mat-toolbar color="primary"> | 19 | <mat-toolbar color="primary"> |
20 | <h2 translate>rulenode.add</h2> | 20 | <h2 translate>rulenode.add</h2> |
21 | - <span fxFlex></span> | 21 | + <span fxFlex>: {{ruleNode.component.name}}</span> |
22 | <div [tb-help]="helpLinkIdForRuleNodeType()"></div> | 22 | <div [tb-help]="helpLinkIdForRuleNodeType()"></div> |
23 | <button mat-icon-button | 23 | <button mat-icon-button |
24 | (click)="cancel()" | 24 | (click)="cancel()" |