forked from FoundKeyGang/FoundKey
fix(client): Fix #6698
This commit is contained in:
parent
925868dcdb
commit
e29b5c2326
1 changed files with 7 additions and 1 deletions
|
@ -64,7 +64,13 @@ export default Vue.extend({
|
|||
}
|
||||
},
|
||||
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: {
|
||||
onClick() {
|
||||
|
|
Loading…
Reference in a new issue