fix(theme): doc changelog mismatch (#413)

This commit is contained in:
pengzhanbo 2025-01-05 21:20:48 +08:00 committed by GitHub
parent 756cc54e80
commit 1db995c887
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ const hasChangelog = computed(() =>
<VPLink :href="item.tagUrl" no-icon class="release-tag">
<code>{{ item.tag }}</code>
</VPLink>
<span class="datetime">{{ theme.changelogOnText }} {{ item.datetime }}</span>
<span class="datetime" data-allow-mismatch>{{ theme.changelogOnText }} {{ item.datetime }}</span>
</div>
</li>
<li v-else class="changelog commit">
@ -55,7 +55,7 @@ const hasChangelog = computed(() =>
</div>
<div>
<p class="message" v-html="item.message" />
<span class="datetime">{{ theme.changelogOnText }} {{ item.datetime }}</span>
<span class="datetime" data-allow-mismatch>{{ theme.changelogOnText }} {{ item.datetime }}</span>
</div>
</li>
</template>