Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zly2006 committed Mar 16, 2024
1 parent 4761d4c commit e019026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions src/views/Sponsors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const unitDisplay: Record<string, string> = {
CAD: 'C$',
AUD: 'A$',
HKD: 'HK$',
}
};
const sponsors: Ref<Sponsor[]> = ref([]);
doFetchGet('/api/sponsors')
Expand Down Expand Up @@ -57,15 +57,13 @@ doFetchGet('/api/sponsors')
<p class="text-center">
{{ $t('sponsors.description') }}
</p>
<div class="content-common">
<v-card class="content-common" border>
<v-list
subheader
three-line
link
v-for="sponsor in sponsors"
:key="sponsor.name"
border
:elevation="2"
>
<!--suppress VueUnrecognizedDirective -->
<v-list-item :key="sponsor.name" v-ripple>
Expand All @@ -82,7 +80,7 @@ doFetchGet('/api/sponsors')
<div v-html="sponsor.message" />
</v-list-item>
</v-list>
</div>
</v-card>
<div class="text-center content-common notice">
<p>
{{ $t('sponsors.notice') }}
Expand Down
2 changes: 1 addition & 1 deletion src/views/profile/EditProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function savePreferences() {
Save Preferences
</v-btn>
</v-row>
</v-card >
</v-card>

<v-card v-if="user" class="setting-section-card" rounded="lg" border>
<h3 class="setting-section-title">Password</h3>
Expand Down

0 comments on commit e019026

Please sign in to comment.