don't show exchange rates data provider when use user custom exchange rates data

This commit is contained in:
MaysWind
2025-05-28 22:22:03 +08:00
parent a20ef34280
commit cde26b76b1
3 changed files with 28 additions and 5 deletions
+11 -2
View File
@@ -53,7 +53,7 @@
</v-card>
</v-col>
<v-col cols="12" v-if="exchangeRatesData">
<v-col cols="12" v-if="exchangeRatesData && !isUserCustomExchangeRates">
<v-card :title="tt('Exchange Rates Data')">
<v-card-text>
<v-row no-gutters>
@@ -124,5 +124,14 @@ import { useI18n } from '@/locales/helpers.ts';
import { useAboutPageBase } from '@/views/base/AboutPageBase.ts';
const { tt } = useI18n();
const { version, buildTime, exchangeRatesData, mapProviderName, mapProviderWebsite, licenseLines, thirdPartyLicenses } = useAboutPageBase();
const {
version,
buildTime,
exchangeRatesData,
isUserCustomExchangeRates,
mapProviderName,
mapProviderWebsite,
licenseLines,
thirdPartyLicenses
} = useAboutPageBase();
</script>