Skip to content
Snippets Groups Projects
Commit 2db7774a authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

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

#316 - fix empty username issue

See merge request pleroma/pleroma-fe!531
parents 8e51c784 0b244545
Branches feat/media-modal
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment