Added group permissions. Added some global styles. Made groups rely on services' data.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<main>
|
||||
@for (action of actions; track $index) {
|
||||
@for (action of actions; track action.name) {
|
||||
<button type="button"
|
||||
class="container"
|
||||
(click)="modify(action)">
|
||||
|
@ -10,7 +10,7 @@
|
||||
<mat-select-trigger>
|
||||
<mat-icon matPrefix>filter_list</mat-icon> {{filter.name}}
|
||||
</mat-select-trigger>
|
||||
@for (item of filters; track $index) {
|
||||
@for (item of filters; track item.name) {
|
||||
<mat-option value="{{$index}}">{{item.name}}</mat-option>
|
||||
}
|
||||
</mat-select>
|
||||
|
Reference in New Issue
Block a user