mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-23 14:48:35 +00:00
lint
This commit is contained in:
parent
417b2e5648
commit
7a3445a9f4
@ -275,7 +275,7 @@ export default function DataStoreForm({
|
|||||||
name="description"
|
name="description"
|
||||||
aria-label="Description"
|
aria-label="Description"
|
||||||
placeholder="Description"
|
placeholder="Description"
|
||||||
value={dataStore.description}
|
value={dataStore.description ?? ''}
|
||||||
onChange={(event: any) =>
|
onChange={(event: any) =>
|
||||||
updateDataStore({ description: event.target.value })
|
updateDataStore({ description: event.target.value })
|
||||||
}
|
}
|
||||||
|
@ -143,7 +143,7 @@ export default function DataStoreListTable() {
|
|||||||
searchParams.set('datastore_per_page', '10');
|
searchParams.set('datastore_per_page', '10');
|
||||||
searchParams.set('type', selectedDataStore.type);
|
searchParams.set('type', selectedDataStore.type);
|
||||||
searchParams.set('identifier', selectedDataStore.id);
|
searchParams.set('identifier', selectedDataStore.id);
|
||||||
searchParams.set('location', selectedDataStore.location);
|
searchParams.set('location', selectedDataStore.location ?? '');
|
||||||
setSearchParams(searchParams);
|
setSearchParams(searchParams);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user