Fix extension tick mark not appearing

This commit is contained in:
Andrew Bastin
2021-02-01 10:03:18 -05:00
parent 2b2c968a97
commit 075e11a7e1

View File

@@ -67,6 +67,12 @@ export default {
props: {
show: Boolean,
},
watch: {
show() {
this.hasChromeExtInstalled = hasChromeExtensionInstalled();
this.hasFirefoxExtInstalled = hasFirefoxExtensionInstalled();
}
},
data() {
return {
hasChromeExtInstalled: hasChromeExtensionInstalled(),