diff --git a/apps/kimi-web/src/components/Composer.vue b/apps/kimi-web/src/components/Composer.vue
index 52a7cddd0..16c37f20e 100644
--- a/apps/kimi-web/src/components/Composer.vue
+++ b/apps/kimi-web/src/components/Composer.vue
@@ -610,11 +610,11 @@ function selectModel(modelId: string): void {
:title="msg.attachmentCount > 0 ? t('composer.queuedHasImage', { n: msg.attachmentCount }) : t('composer.editQueued')"
@click="msg.attachmentCount === 0 && editQueued(i, msg.text)"
>
-
+
{{ msg.text || t('composer.queuedImageOnly', { n: msg.attachmentCount }) }}
@@ -628,7 +628,7 @@ function selectModel(modelId: string): void {
{{ att.name }}
-
-
+
@@ -715,7 +715,7 @@ function selectModel(modelId: string): void {
type="button"
@click="openFilePicker"
>
-
+
@@ -741,7 +741,7 @@ function selectModel(modelId: string): void {
role="menuitem"
@click="choosePermission(opt.mode)"
>
- {{ opt.mode === status.permission ? '✓' : '' }}
+
{{ t(opt.labelKey) }}
{{ t(opt.descKey) }}
@@ -760,10 +760,7 @@ function selectModel(modelId: string): void {
@click="emit('togglePlan')"
@keydown.enter="emit('togglePlan')"
@keydown.space.prevent="emit('togglePlan')"
- >
-
- {{ t('status.planLabel') }}
-
+ >{{ t('status.planLabel') }}
@@ -812,7 +809,7 @@ function selectModel(modelId: string): void {
>
{{ status.model }}
{{ t('composer.thinkingSuffix') }}
-
+
@@ -828,7 +825,7 @@ function selectModel(modelId: string): void {
role="menuitem"
@click="selectModel(m.id)"
>
- {{ (m.id === status.model || m.model === status.model || m.displayName === status.model) ? '✓' : '' }}
+
{{ m.displayName ?? m.model }}
@@ -841,7 +838,7 @@ function selectModel(modelId: string): void {
:class="{ 'is-on': thinkingOn }"
@click="toggleThinking()"
>
- {{ thinkingOn ? '✓' : '' }}
+
{{ t('status.thinkingLabel') }}