adata-ui 0.3.76 → 0.3.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.3.76",
3
+ "version": "0.3.78",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -15,11 +15,14 @@
15
15
  <span class="child-links__info__item__subtitle">{{ link.subtitle }}</span>
16
16
  </p>
17
17
  </component>
18
- <a :href="module === links.key ? links.to: `${links[mode]}${link.to}`" class="child-links__info-arrow">
18
+ <component
19
+ :is="module === links.key? 'nuxt-link': 'a'"
20
+ :to="module === links.key ? link.to: null"
21
+ :href="module === links.key ? links.to: `${links[mode]}${link.to}`" class="child-links__info-arrow">
19
22
  <svg width="24" height="24" class="ic-24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
20
23
  <path d="M9 18L15 12L9 6" stroke="#007AFF" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
21
24
  </svg>
22
- </a>
25
+ </component>
23
26
  </div>
24
27
  </li>
25
28
  </ul>
@@ -534,7 +534,7 @@ export default {
534
534
  },
535
535
  async created() {
536
536
  this.navigation = this.navigations[0]
537
- await this.fetchCurrencies()
537
+ // await this.fetchCurrencies()
538
538
  },
539
539
  mounted() {
540
540
  this.$refs.arrow.addEventListener("touchstart", evt => this.touchstart(evt), {passive: true})