修复一处小错误

This commit is contained in:
Chenx221 2024-03-08 16:20:56 +08:00
parent 4a5f4201af
commit dd23efda5b
Signed by: chenx221
GPG Key ID: D7A9EC07024C3021

View File

@ -272,7 +272,7 @@ $darkMode = Yii::$app->user->identity->dark_mode;
<div class="form-check form-switch"> <div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" <input class="form-check-input" type="checkbox" role="switch"
id="followSystemTheme" <?= $darkMode === 2 ? 'checked' : '' ?>> id="followSystemTheme" <?= $darkMode === 2 ? 'checked' : '' ?>>
<label class="form-check-label" for="autoTheme">跟随设备主题</label> <label class="form-check-label" for="followSystemTheme">跟随设备主题</label>
</div> </div>
<br> <br>