chore: release 6.0, fix firefox bug

This commit is contained in:
David Ralph
2021-11-17 22:10:07 +00:00
parent da6c1bba63
commit 42f89b3fc3
7 changed files with 11 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ export default class GreetingSettings extends PureComponent {
<br/>
<Checkbox name='birthdayage' text={getMessage('modals.main.settings.sections.greeting.birthday_age')} category='greeting'/>
<p>{getMessage('modals.main.settings.sections.greeting.birthday_date')}</p>
<input type='date' onChange={this.changeDate} value={this.state.birthday.toISOString().substr(0, 10)}/>
<input type='date' onChange={this.changeDate} value={this.state.birthday.toISOString().substr(0, 10)} required/>
</>
);
}