Resolve #399 (just remove the confusing feature "hide submit button")

This commit is contained in:
the-djmaze 2022-05-17 09:15:06 +02:00
parent cbdb22f1ad
commit c1bed26fd1
30 changed files with 26 additions and 60 deletions

View file

@ -152,7 +152,6 @@ export class AbstractViewSettings
export class AbstractViewLogin extends AbstractView {
constructor(templateID) {
super(templateID, 'Content');
this.hideSubmitButton = SettingsGet('hideSubmitButton');
this.formError = ko.observable(false).extend({ falseTimeout: 500 });
}

View file

@ -4,6 +4,6 @@ export class AdminSettingsLogin extends AbstractViewSettings {
constructor() {
super();
this.addSetting('LoginDefaultDomain');
this.addSettings(['DetermineUserLanguage','DetermineUserDomain','AllowLanguagesOnLogin','hideSubmitButton']);
this.addSettings(['DetermineUserLanguage','DetermineUserDomain','AllowLanguagesOnLogin']);
}
}