forked from AkkomaGang/akkoma-fe
#316 - fix empty username issue
This commit is contained in:
parent
5974dfebfb
commit
0b24454561
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
||||||
<input type="checkbox" v-model="newHideNetwork" id="account-hide-network">
|
<input type="checkbox" v-model="newHideNetwork" id="account-hide-network">
|
||||||
<label for="account-hide-network">{{$t('settings.hide_network_description')}}</label>
|
<label for="account-hide-network">{{$t('settings.hide_network_description')}}</label>
|
||||||
</p>
|
</p>
|
||||||
<button :disabled='newName.length <= 0' class="btn btn-default" @click="updateProfile">{{$t('general.submit')}}</button>
|
<button :disabled='newName && newName.length === 0' class="btn btn-default" @click="updateProfile">{{$t('general.submit')}}</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="setting-item">
|
<div class="setting-item">
|
||||||
<h2>{{$t('settings.avatar')}}</h2>
|
<h2>{{$t('settings.avatar')}}</h2>
|
||||||
|
|
Loading…
Reference in a new issue