Merge branch 'issue-316-empty-username' into 'develop'

#316 - fix empty username issue

See merge request pleroma/pleroma-fe!531
This commit is contained in:
Shpuld Shpludson 2019-02-05 19:58:45 +00:00
commit 2db7774a3a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
<input type="checkbox" v-model="newHideNetwork" id="account-hide-network">
<label for="account-hide-network">{{$t('settings.hide_network_description')}}</label>
</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 class="setting-item">
<h2>{{$t('settings.avatar')}}</h2>