Force LTR on error popup in dev-info panel (#2834)

This commit is contained in:
yosilevy 2019-02-23 23:30:58 +02:00 committed by Paulus Schoutsen
parent b7f62c5822
commit b764e87a00

View File

@ -64,7 +64,14 @@ class DialogSystemLogDetail extends LitElement {
}
static get styles(): CSSResult[] {
return [haStyleDialog, css``];
return [
haStyleDialog,
css`
paper-dialog {
direction: ltr;
}
`,
];
}
}