diff options
Diffstat (limited to 'src/client/app/common/views/components/dialog.vue')
| -rw-r--r-- | src/client/app/common/views/components/dialog.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/app/common/views/components/dialog.vue b/src/client/app/common/views/components/dialog.vue index f22e0174b3..9f38031d62 100644 --- a/src/client/app/common/views/components/dialog.vue +++ b/src/client/app/common/views/components/dialog.vue @@ -18,6 +18,7 @@ <fa icon="spinner" pulse v-if="type === 'waiting'"/> </div> <header v-if="title" v-html="title"></header> + <header v-if="title == null && user">{{ $t('@.enter-username') }}</header> <div class="body" v-if="text" v-html="text"></div> <ui-input v-if="input" v-model="inputValue" autofocus :type="input.type || 'text'" :placeholder="input.placeholder" @keydown="onInputKeydown"></ui-input> <ui-input v-if="user" v-model="userInputValue" autofocus @keydown="onInputKeydown"><template #prefix>@</template></ui-input> |