Fix unassign category action (#20235)

This commit is contained in:
Paul Bottein 2024-03-28 13:51:37 +01:00 committed by GitHub
parent a08484f450
commit b590b21183
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class DialogAssignCategory extends LitElement {
private _categoryChanged(ev: CustomEvent): void {
if (!ev.detail.value) {
return;
this._category = undefined;
}
this._category = ev.detail.value;
}