mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-01-12 14:06:14 +08:00
fix hydration warnings
This commit is contained in:
parent
a340aa685e
commit
d574d06841
@ -75,7 +75,7 @@ const headers = [
|
||||
<img v-else class="inline-img" :src="'data:image/png;base64,' + item.oldState" alt="" />
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ item.oldState && i18n.te(item.oldState) ? i18n.t(item.oldState) : item.oldState }}
|
||||
<span>{{ item.oldState && i18n.te(item.oldState) ? i18n.t(item.oldState) : item.oldState }}</span>
|
||||
</template>
|
||||
</template>
|
||||
<template #item_newState="{ item }">
|
||||
@ -100,7 +100,7 @@ const headers = [
|
||||
<img v-else class="inline-img" :src="'data:image/png;base64,' + item.newState" alt="" />
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ i18n.te(item.newState) ? i18n.t(item.newState) : item.newState }}
|
||||
<span>{{ i18n.te(item.newState) ? i18n.t(item.newState) : item.newState }}</span>
|
||||
</template>
|
||||
</template>
|
||||
</SortableTable>
|
||||
|
Loading…
Reference in New Issue
Block a user