Arg modifier improvements: args are now shown as removable chips which can be directly typed as well (w/o using the adder)

This commit is contained in:
Tzahi12345
2020-05-04 15:39:33 -04:00
parent 49081db8cb
commit 0504167734
5 changed files with 62 additions and 7 deletions

View File

@@ -1131,8 +1131,8 @@ export class MainComponent implements OnInit {
}
});
dialogRef.afterClosed().subscribe(new_args => {
if (new_args) {
this.customArgs = new_args;
if (new_args !== null) {
this.customArgs = new_args;
}
});
}