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