Skip to content

Commit

Permalink
remove autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Nov 25, 2024
1 parent 83e3c7a commit fd9f816
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ const value = computed({
:class="{ 'onyx-datepicker__native--success': successMessages }"
:type="props.type"
:required="props.required"
:autocomplete="props.autocomplete"
:autofocus="props.autofocus"
:name="props.name"
:readonly="props.readonly"
Expand Down
2 changes: 1 addition & 1 deletion packages/sit-onyx/src/components/OnyxDatePicker/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { OnyxInputProps } from "../OnyxInput/types";

// TODO: check autocomplete
export type OnyxDatePickerProps = Omit<
OnyxInputProps,
| "type"
Expand All @@ -11,6 +10,7 @@ export type OnyxDatePickerProps = Omit<
| "pattern"
| "withCounter"
| "placeholder"
| "autocomplete"
> & {
/**
* Current date value. Supports all data types that are parsable by `new Date()`.
Expand Down

0 comments on commit fd9f816

Please sign in to comment.