mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-04 09:48:43 +09:00
Fix bug
This commit is contained in:
parent
fc3a323a21
commit
c1141c5267
@ -104,7 +104,7 @@ export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API)
|
|||||||
data() {
|
data() {
|
||||||
_unwatchDarkmode_: null
|
_unwatchDarkmode_: null
|
||||||
},
|
},
|
||||||
created() {
|
mounted() {
|
||||||
const apply = v => {
|
const apply = v => {
|
||||||
if (this.$el.setAttribute == null) return;
|
if (this.$el.setAttribute == null) return;
|
||||||
if (v) {
|
if (v) {
|
||||||
@ -114,7 +114,7 @@ export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API)
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.$nextTick(() => apply(os.store.state.device.darkmode));
|
apply(os.store.state.device.darkmode);
|
||||||
|
|
||||||
this._unwatchDarkmode_ = os.store.watch(s => {
|
this._unwatchDarkmode_ = os.store.watch(s => {
|
||||||
return s.device.darkmode;
|
return s.device.darkmode;
|
||||||
|
Loading…
Reference in New Issue
Block a user