Bugfixes (#74)

* Fix demo post date format
* Fix test data
* Fix sorting
* Fix load more
* Fix markdown preview not updating
* Load relation options if value provided
* Update entry with default date
* Better change detection
* Fix sticky headers on tablet view (docs site)
This commit is contained in:
Daniel Lautzenheiser
2022-11-08 09:54:18 -05:00
committed by GitHub
parent 16339ce1bf
commit af8f18ce54
45 changed files with 388 additions and 322 deletions

View File

@ -51,5 +51,8 @@ export function addExtensions() {
CodeWidget(),
ColorStringWidget(),
]);
registerLocale('en', locales.en);
Object.keys(locales).forEach(locale => {
registerLocale(locale, locales[locale]);
});
}