fix(client): Fix #6698
This commit is contained in:
parent
925868dcdb
commit
e29b5c2326
|
@ -64,7 +64,13 @@ export default Vue.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.hide = this.image.isSensitive && !this.$store.state.device.alwaysShowNsfw;
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
||||||
|
this.$watch('image', () => {
|
||||||
|
this.hide = this.image.isSensitive && !this.$store.state.device.alwaysShowNsfw;
|
||||||
|
}, {
|
||||||
|
deep: true,
|
||||||
|
immediate: true,
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
|
|
Loading…
Reference in New Issue