fix(editor): 修复合并历史记录信息展示

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
roymondchen 2026-06-04 17:10:54 +08:00
parent cd19dec790
commit 3bd0eecb42

View File

@ -14,13 +14,13 @@
<span class="m-editor-history-list-item-desc">{{ desc }}</span>
<span
v-if="sourceLabel(source)"
v-if="!merged && sourceLabel(source)"
class="m-editor-history-list-item-source"
:title="`操作途径:${sourceLabel(source)}`"
>{{ sourceLabel(source) }}</span
>
<span v-if="time" class="m-editor-history-list-item-time" :title="timeTitle || time">{{ time }}</span>
<span v-if="!merged && time" class="m-editor-history-list-item-time" :title="timeTitle || time">{{ time }}</span>
<span v-if="merged" class="m-editor-history-list-item-merge">合并 {{ stepCount }} </span>