-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugins: UI Fix binding & Extend Example Plugins
* Fix binding on text input control. * Remove saving configuration on Destroy because it's called after session request is sent. * Extend string plugin with prefix field to demonstrate configurations functionality * Add more debug logs
- Loading branch information
1 parent
e121414
commit 215ba58
Showing
8 changed files
with
64 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
application/client/src/app/ui/tabs/observe/config-schema/renders/string/template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
<mat-form-field class="material-mofication-normal"> | ||
<mat-label>{{config.title}}</mat-label> | ||
<input matInput [attr.placeholder]="config.title" [(ngModel)]="value" /> | ||
<input | ||
matInput | ||
[attr.placeholder]="config.title" | ||
[(ngModel)]="value" | ||
(input)="ngOnInputChange($event)" | ||
/> | ||
<mat-hint>{{config.description}}</mat-hint> | ||
</mat-form-field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,7 @@ | |
position: relative; | ||
display: block; | ||
} | ||
|
||
.itemspadding { | ||
padding-bottom: 20px; | ||
} |
1 change: 1 addition & 0 deletions
1
application/client/src/app/ui/tabs/observe/config-schema/template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<app-tabs-config-schema-entry | ||
*ngFor="let config of state.schemas" | ||
class="itemspadding" | ||
[config]="config" | ||
[state]="state" | ||
></app-tabs-config-schema-entry> |