消息中增加恢复成功的消息

This commit is contained in:
刘祥超
2020-11-16 09:20:17 +08:00
parent 120aff71a5
commit 8abf806ce9
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ Vue.component("health-check-config-box", {
<input type="checkbox" value="1" v-model="healthCheck.autoDown"/> <input type="checkbox" value="1" v-model="healthCheck.autoDown"/>
<label></label> <label></label>
</div> </div>
<p class="comment">选中后系统会根据健康检查的结果自动标记节点的上线/下线状态。</p> <p class="comment">选中后系统会根据健康检查的结果自动标记节点的上线/下线状态并可能自动同步DNS设置。</p>
</td> </td>
</tr> </tr>
<tr v-show="healthCheck.autoDown"> <tr v-show="healthCheck.autoDown">

View File

@@ -27,7 +27,7 @@ Vue.component("message-row", {
</span> </span>
</td> </td>
</tr> </tr>
<tr :class="{error: message.level == 'error'}"> <tr :class="{error: message.level == 'error', positive: message.level == 'success'}">
<td> <td>
{{message.body}} {{message.body}}