Fix filter list icon btn for firefox
parent
2d0dd0f000
commit
1812f20ac4
|
@ -4,10 +4,11 @@
|
|||
{{button.label}}
|
||||
</mat-button-toggle>
|
||||
</mat-button-toggle-group>
|
||||
<button mat-icon-button class="add-btn">
|
||||
<mat-icon svgIcon="{{addButton.svgIcon}}"
|
||||
<button mat-icon-button
|
||||
class="add-btn"
|
||||
matTooltip="{{addButton.tooltip}}"
|
||||
(click)="add()">
|
||||
<mat-icon svgIcon="{{addButton.svgIcon}}">
|
||||
</mat-icon>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -23,6 +23,7 @@ export class ListFilterComponent {
|
|||
}
|
||||
|
||||
add() {
|
||||
console.log("in child");
|
||||
this.openAddFrom.emit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,6 +53,7 @@ export class UserListComponent implements OnInit {
|
|||
}
|
||||
|
||||
openNewUserForm() {
|
||||
console.log("message!")
|
||||
this.selectedUserId = null;
|
||||
this.router.navigate([{outlets: {'right': ['new']}}], {relativeTo: this.route});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue