diff --git a/src/components/compose.jsx b/src/components/compose.jsx index 9e6597ce..73eb715f 100644 --- a/src/components/compose.jsx +++ b/src/components/compose.jsx @@ -854,6 +854,7 @@ function Compose({ class="spoiler-text-field" lang={language} spellCheck="true" + dir="auto" style={{ opacity: sensitive ? 1 : 0, pointerEvents: sensitive ? 'auto' : 'none', @@ -1579,6 +1580,7 @@ function Poll({ placeholder={`Choice ${i + 1}`} lang={lang} spellCheck="true" + dir="auto" onInput={(e) => { const { value } = e.target; options[i] = value; diff --git a/src/components/list-add-edit.jsx b/src/components/list-add-edit.jsx index bb2b282b..d5a76338 100644 --- a/src/components/list-add-edit.jsx +++ b/src/components/list-add-edit.jsx @@ -95,6 +95,7 @@ function ListAddEdit({ list, onClose }) { name="title" required disabled={uiState === 'loading'} + dir="auto" /> diff --git a/src/pages/search.jsx b/src/pages/search.jsx index af37208c..96c269d9 100644 --- a/src/pages/search.jsx +++ b/src/pages/search.jsx @@ -402,6 +402,7 @@ const SearchForm = forwardRef((props, ref) => { type="search" // autofocus placeholder="Search" + dir="auto" onSearch={(e) => { if (!e.target.value) { setSearchParams({});