mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-16 18:26:16 +01:00
make label optional on Autocomplete component since its already used without label
This commit is contained in:
@@ -8,7 +8,7 @@ import { ActionMeta, ValueType } from "react-select/lib/types";
|
|||||||
type Props = {
|
type Props = {
|
||||||
loadSuggestions: (p: string) => Promise<SelectValue[]>;
|
loadSuggestions: (p: string) => Promise<SelectValue[]>;
|
||||||
valueSelected: (p: SelectValue) => void;
|
valueSelected: (p: SelectValue) => void;
|
||||||
label: string;
|
label?: string;
|
||||||
helpText?: string;
|
helpText?: string;
|
||||||
value?: SelectValue;
|
value?: SelectValue;
|
||||||
placeholder: string;
|
placeholder: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user