diff --git a/package.json b/package.json index 3268bb8..e7efc7e 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ }, "dependencies": { "axios": "^0.19.2", + "clipboard-polyfill": "^3.0.1", "core-js": "^3.6.5", "v-tooltip": "^2.0.3", "vue": "^2.6.11", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1bd620d..32de218 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,5 +1,6 @@ dependencies: axios: 0.19.2 + clipboard-polyfill: 3.0.1 core-js: 3.6.5 v-tooltip: 2.0.3_vue@2.6.11 vue: 2.6.11 @@ -2475,6 +2476,10 @@ packages: node: '>= 10' resolution: integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + /clipboard-polyfill/3.0.1: + dev: false + resolution: + integrity: sha512-R/uxBa8apxLJArzpFpuTLqavUcnEX8bezZKSuqkwz7Kny2BmxyKDslYGdrKiasKuD+mU1noF7Lkt/p5pyDqFoQ== /clipboardy/2.3.0: dependencies: arch: 2.1.2 @@ -8827,6 +8832,7 @@ specifiers: '@vue/cli-service': ~4.4.0 axios: ^0.19.2 babel-eslint: ^10.1.0 + clipboard-polyfill: ^3.0.1 core-js: ^3.6.5 eslint: ^6.7.2 eslint-plugin-vue: ^6.2.2 diff --git a/src/components/Icon.vue b/src/components/Icon.vue index 58f3720..325f892 100644 --- a/src/components/Icon.vue +++ b/src/components/Icon.vue @@ -2,15 +2,15 @@
+ + + + + +
@@ -114,7 +137,7 @@ export default { default: 25, required: false, }, - inner_size: { + innerSize: { type: Number, default: null, required: false, @@ -140,10 +163,10 @@ export default { }}, computed: { span_styles() { - if (this.inner_size) { + if (this.innerSize) { return { - "width": `${this.inner_size}px`, - "height": `${this.inner_size}px`, + "width": `${this.innerSize}px`, + "height": `${this.innerSize}px`, } } let x = Math.floor(this.size * 0.6); diff --git a/src/components/cards/Track.vue b/src/components/cards/Track.vue index 3b44c63..382814d 100644 --- a/src/components/cards/Track.vue +++ b/src/components/cards/Track.vue @@ -1,5 +1,5 @@ + + \ No newline at end of file diff --git a/src/components/modals/SiteInfo.vue b/src/components/modals/SiteInfo.vue index 65eeba0..e4b21f3 100644 --- a/src/components/modals/SiteInfo.vue +++ b/src/components/modals/SiteInfo.vue @@ -3,7 +3,7 @@