Add setting for the first day of the week

This commit is contained in:
kolaente 2021-06-03 18:12:40 +02:00
parent 641ccd1026
commit e37145cd43
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
9 changed files with 87 additions and 49 deletions

View file

@ -132,6 +132,19 @@
Play a sound when marking tasks as done
</label>
</div>
<div class="field">
<label class="is-flex is-align-items-center">
<span>
Week starts on
</span>
<div class="select ml-2">
<select v-model.number="settings.weekStart">
<option value="0">Sunday</option>
<option value="1">Monday</option>
</select>
</div>
</label>
</div>
<x-button
:loading="userSettingsService.loading"