This commit is contained in:
Cory LaViska
2024-05-28 15:28:20 -04:00
parent c3bd625d46
commit 3119a75c19
4 changed files with 4 additions and 4 deletions

View File

@@ -106,8 +106,8 @@ export default class WaRating extends WebAwesomeElement {
}
private handleKeyDown(event: KeyboardEvent) {
const isLtr = this.matches(':dir(ltr)');
const isRtl = this.matches(':dir(rtl)');
const isLtr = !isRtl;
const oldValue = this.value;
if (this.disabled || this.readonly) {