Rename CheckboxMaterialDesignComponent to CheckboxComponent

This commit is contained in:
the-djmaze 2022-10-04 10:09:22 +02:00
parent 74f830486e
commit 1edc5fa4f7
3 changed files with 5 additions and 6 deletions

View file

@ -1,4 +1,4 @@
export class CheckboxMaterialDesignComponent {
export class CheckboxComponent {
constructor(params = {}) {
this.value = ko.isObservable(params.value) ? params.value
: ko.observable(!!params.value);