Skip to content

Commit b48c257

Browse files
committed
Fix showing coin data
1 parent 3b632a5 commit b48c257

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/CoinView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ onUnmounted(async () => {
145145
<InfoRow
146146
v-if="coinData[service.infoFieldIndex('paydate')]"
147147
:title="settings.fields['paydate']"
148-
:value="i18n.global.d()"
148+
:value="i18n.global.d(coinData[service.infoFieldIndex('paydate')])"
149149
/>
150150
<InfoRow
151151
v-if="coinData[service.infoFieldIndex('payprice')]"

frontend/src/composables/useService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const {openDatabase, executeQuery} = useSQLite();
99

1010
const api = axios.create({
1111
// baseURL: 'http://localhost:8000',
12-
timeout: 15000,
12+
timeout: 20000,
1313
})
1414

1515
let connection_type = null;

0 commit comments

Comments
 (0)