We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db3ea0c commit e44e6a6Copy full SHA for e44e6a6
1 file changed
src/main/lyrics/LyricsDispatcher.ts
@@ -13,7 +13,7 @@ export default class LyricsDispatcher extends EventTarget {
13
14
set lyrics(value) {
15
this._lyrics = value;
16
- if (value) this._slogan = null;
+ if (value) this.slogan = null;
17
this.dispatchEvent(
18
new CustomEvent("lyricsupdate", {
19
detail: value,
@@ -27,7 +27,7 @@ export default class LyricsDispatcher extends EventTarget {
27
28
set slogan(value) {
29
this._slogan = value;
30
- if (value) this._lyrics = null;
+ if (value) this.lyrics = null;
31
32
new CustomEvent("sloganupdate", {
33
0 commit comments