🔧 Added __str__ key to the series AsyncSelectPaginate populator
This commit is contained in:
@@ -6,12 +6,10 @@ import { withAsyncPaginate } from "react-select-async-paginate";
|
||||
const CreatableAsyncPaginate = withAsyncPaginate(Creatable);
|
||||
|
||||
export const AsyncSelectPaginate = (props): ReactElement => {
|
||||
console.log(props);
|
||||
const [value, onValueChange] = useState(null);
|
||||
const [isAddingInProgress, setIsAddingInProgress] = useState(false);
|
||||
|
||||
const mudasir = useCallback((query, loadedOptions, { page }) => {
|
||||
console.log(page);
|
||||
return fetchMetronResource({
|
||||
method: "GET",
|
||||
resource: props.metronResource,
|
||||
|
||||
@@ -15,10 +15,6 @@ export const EditMetadataPanel = (props): ReactElement => {
|
||||
};
|
||||
const dispatch = useDispatch();
|
||||
|
||||
const [seriesValue, onSeriesValueChange] = useState(null);
|
||||
const [creatorValue, onCreatorValueChange] = useState(null);
|
||||
const [isAddingInProgress, setIsAddingInProgress] = useState(false);
|
||||
|
||||
return (
|
||||
<>
|
||||
<Form
|
||||
|
||||
Reference in New Issue
Block a user