We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4f98f commit 1240fefCopy full SHA for 1240fef
1 file changed
quantclass_sync_internal/gui/assets/index.html
@@ -276,8 +276,10 @@ <h2 class="setup-title">QuantClass Sync 初始设置</h2>
276
<span x-text="p.last_result || ''"></span>
277
</template>
278
</td>
279
- <!-- 错误信息:截断+title 看全文 -->
280
- <td class="err-cell" :title="p.last_error || ''" x-text="p.last_error || ''"></td>
+ <!-- 错误信息:仅失败时显示,跳过/成功不显示 -->
+ <td class="err-cell"
281
+ :title="p.last_result === 'error' ? (p.last_error || '') : ''"
282
+ x-text="p.last_result === 'error' ? (p.last_error || '') : ''"></td>
283
</tr>
284
285
</tbody>
0 commit comments