-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switcher #5
Conversation
@@ -20,3 +20,11 @@ export class Remove implements WsActionModel<string> { | |||
constructor(public data: string) { | |||
} | |||
} | |||
|
|||
export class SkipKey implements WsActionModel<{ key: string, skip: boolean }> { | |||
static readonly type = '[Requests] Remove'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
static readonly type = '[Requests] SkipKey';
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | ||
this.cache.get(key).skip = skip; | ||
this.skipKeys[key] = skip; | ||
this.write(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.write(); have to be outside the 'forEach'
} | ||
} | ||
|
||
export class CheckedKey implements WsActionModel<{ key: string, checked: boolean }> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used
.extra-header { | ||
font-size: large; | ||
font-weight: 200; | ||
background-color: #ffdd71; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
background-color: mat-theme-color(...);
No description provided.