1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-11 21:29:13 +09:00
This commit is contained in:
syuilo 2020-02-08 11:33:25 +09:00
parent 7be6501571
commit a509045b25

View File

@ -84,7 +84,7 @@ export default Vue.extend({
methods: {
close() {
this.show = false;
(this.$refs.content as any).style.pointerEvents = 'none';
if (this.$refs.content) (this.$refs.content as any).style.pointerEvents = 'none';
}
}
});