Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Jul 28, 2023
1 parent 44c40a2 commit 18d8ec9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/ui/components/DataFeedDescription.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<i18n-t :keypath="description.i18nPath" tag="p" class="feed-description">
<i18n-t :keypath="description.i18nPath" tag="p" class="feed-description" scope="global">
<template v-for="field in description.fields" #[field] :key="field.i18nPath">
<span :key="field.i18nPath" class="bold">{{ fieldToProp[field] }}</span>
</template>
Expand Down
1 change: 0 additions & 1 deletion packages/ui/components/DataFeeds.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ const variables = {
// pollInterval: 60000,
const feeds = await useAsyncQuery(feedsQuery, variables)
console.log('feeds.data', feeds.data)
// const currentPage = ref(1)
// const itemsPerPage = ref(28)
Expand Down
2 changes: 0 additions & 2 deletions packages/ui/components/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ watch(options, (newOptions) => {
if (newOptions) {
setCurrentNetwork(newOptions)
}
console.log("network.value", JSON.stringify(network.value))
console.log("options.value", JSON.stringify(newOptions))
const networks = newOptions?.[network.value]
store.updateSelectedNetwork(networks)
})
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/components/footer/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<div class="alliance-text">
<SvgIcon class="logo white" name="ado_member" />
<i18n-t keypath="footer.ado_text" tag="p" class="small-description">
<i18n-t keypath="footer.ado_text" tag="p" class="small-description" scope="global">
<a class="link underline" :href="urls.ado" target="_blank">
theado.org
</a>
Expand All @@ -25,7 +25,7 @@
</div>
<div class="bottom">
<SvgIcon class="logo white" name="witnet_dark" />
<i18n-t keypath="footer.copyright.base" class="copyright" tag="p">
<i18n-t keypath="footer.copyright.base" class="copyright" tag="p" scope="global">
<span>2018-{{ new Date().getFullYear() }}</span>
<a class="link" href="https://witnet.foundation" target="_blank">{{
$t('footer.copyright.witnet_foundation')
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,12 @@ export default defineNuxtConfig({
},
css: [
'@fortawesome/fontawesome-svg-core/styles.css'
],
build: {
transpile: [
'@fortawesome/fontawesome-svg-core',
'@fortawesome/free-brands-svg-icons'
]
}
})

0 comments on commit 18d8ec9

Please sign in to comment.