diff --git a/src/common/components/Icon.vue b/src/common/components/Icon.vue
index fd8006f..aede430 100644
--- a/src/common/components/Icon.vue
+++ b/src/common/components/Icon.vue
@@ -1,6 +1,69 @@
-
@@ -15,21 +78,18 @@ export default {
// note — webextension-polyfill is not gonna save us here.
// been there, tried that.
return {
- bootstrapIconsBasePath: (BrowserDetect.firefox ? browser : chrome).runtime.getURL('/res/icons/bootstrap-icons.svg'),
iconHref: '',
};
},
created() {
- this.iconHref = `${this.bootstrapIconsBasePath}#${this.icon}`;
+ this.iconHref = `#${this.icon}`;
}
}
-