mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Fix Bug Member settings drops to the second line and overlaps when many boards are starred as favourites.
Thanks to xet7 ! Fixes #5943
This commit is contained in:
parent
27e9d3ce47
commit
46d46e313c
6 changed files with 101 additions and 12 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import { TAPi18n } from '/imports/i18n';
|
||||
|
||||
const passwordField = AccountsTemplates.removeField('password');
|
||||
passwordField.autocomplete = 'current-password';
|
||||
const emailField = AccountsTemplates.removeField('email');
|
||||
let disableRegistration = false;
|
||||
let disableForgotPassword = false;
|
||||
|
|
@ -61,6 +62,14 @@ AccountsTemplates.addFields([
|
|||
},
|
||||
emailField,
|
||||
passwordField,
|
||||
{
|
||||
_id: 'password_again',
|
||||
type: 'password',
|
||||
displayName: 'Password (again)',
|
||||
required: true,
|
||||
minLength: 6,
|
||||
autocomplete: 'new-password',
|
||||
},
|
||||
{
|
||||
_id: 'invitationcode',
|
||||
type: 'text',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue