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