components/buffer: use browser locale for date-separator

This commit is contained in:
xse 2022-01-13 21:00:45 +01:00 committed by Simon Ser
parent a0f8f1f52f
commit 393fd93253

View file

@ -527,10 +527,7 @@ class DateSeparator extends Component {
render() { render() {
let date = this.props.date; let date = this.props.date;
let YYYY = date.getFullYear().toString().padStart(4, "0"); let text = date.toLocaleDateString([], { year: "numeric", month: "2-digit", day: "2-digit" });
let MM = (date.getMonth() + 1).toString().padStart(2, "0");
let DD = date.getDate().toString().padStart(2, "0");
let text = `${YYYY}-${MM}-${DD}`;
return html` return html`
<div class="separator date-separator"> <div class="separator date-separator">
${text} ${text}