Skip to content

Commit c1e3ef7

Browse files
committed
fix: replace HTML entities with Unicode ellipsis in auth buttons
1 parent e00922a commit c1e3ef7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vue/src/views/SiteAuthView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
type="button"
117117
:disabled="busy"
118118
@click="doRegister"
119-
>{{ busy ? '提交中&hellip;' : '注 册' }}</button>
119+
>{{ busy ? '提交中' : '注 册' }}</button>
120120
<div class="auth-terms">注册即表示同意服务条款</div>
121121
</div>
122122

@@ -167,7 +167,7 @@
167167
type="button"
168168
:disabled="busy"
169169
@click="doChangePassword"
170-
>{{ busy ? '提交中&hellip;' : '确认修改' }}</button>
170+
>{{ busy ? '提交中' : '确认修改' }}</button>
171171
<div class="auth-footer" style="justify-content: center">
172172
<button type="button" class="auth-link" @click="setTab('login')">返回登录</button>
173173
</div>

0 commit comments

Comments
 (0)