This commit is contained in:
ThatOneCalculator 2022-12-05 22:07:44 -08:00
parent 9c9f92cbe3
commit c31d7133e6
3 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc.19-b1",
"version": "12.119.0-calc.19-b2",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -1,8 +1,7 @@
<template>
<XModalWindow
ref="dialog"
:width="370"
:height="400"
:width="400"
@close="onClose"
@closed="emit('closed')"
>

View file

@ -4,7 +4,7 @@
<template #label>{{ i18n.ts.invitationCode }}</template>
<template #prefix><i class="ph-key-bold ph-lg"></i></template>
</MkInput>
<div v-if="instance.disableRegistration && invitationState === 'entered'">
<div v-if="!instance.disableRegistration || (instance.disableRegistration && invitationState === 'entered')">
<MkInput v-model="username" class="_formBlock" type="text" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" required data-cy-signup-username @update:modelValue="onChangeUsername">
<template #label>{{ i18n.ts.username }} <div v-tooltip:dialog="i18n.ts.usernameInfo" class="_button _help"><i class="ph-question-bold"></i></div></template>
<template #prefix>@</template>