We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RruDateTimeInput
1 parent c9cb2f7 commit d2eeea2Copy full SHA for d2eeea2
CHANGELOG.md
@@ -7,6 +7,7 @@ Pre-release versions will not be mentioned here.
7
### Added
8
9
- Added `placeholder` to `RruSelectInput` and `RruMultiSelectInput`.
10
+- `RruDateTimeInput`: Disable auto complete which does not make since it is unusable.
11
12
## [2.3.1] - 2024-03-25
13
src/form/RruDateTimeInput/RruDateTimeInput.tsx
@@ -235,6 +235,7 @@ const RruDateTimeInput: FC<RruDateTimeInputProps> = (props) => {
235
ref={inputRef}
236
dir='ltr'
237
type='text'
238
+ autoComplete='off'
239
name={props.name}
240
disabled={props.disabled}
241
value={value || ''}
0 commit comments