|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <modal v-if="show" @close="hideModal">
|
|
|
+ <SmartModal v-if="show" @close="hideModal">
|
|
|
<div slot="header">
|
|
|
<div class="row-wrapper">
|
|
|
<h3 class="title">{{ $t("extensions") }}</h3>
|
|
@@ -54,7 +54,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div slot="footer"></div>
|
|
|
- </modal>
|
|
|
+ </SmartModal>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -69,9 +69,9 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
show() {
|
|
|
- this.hasChromeExtInstalled = hasChromeExtensionInstalled();
|
|
|
- this.hasFirefoxExtInstalled = hasFirefoxExtensionInstalled();
|
|
|
- }
|
|
|
+ this.hasChromeExtInstalled = hasChromeExtensionInstalled()
|
|
|
+ this.hasFirefoxExtInstalled = hasFirefoxExtensionInstalled()
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|