feat(google-sheets): add new spreadsheets trigger

This commit is contained in:
Rıdvan Akca
2023-04-04 16:25:38 +03:00
parent f88f05cd46
commit 287f299b94
17 changed files with 121 additions and 7 deletions

View File

@@ -69,7 +69,7 @@ function ControlledAutocomplete(
},
fieldState,
}) => (
<div style={{ width:'100%' }}>
<div style={{ width: '100%' }}>
{/* encapsulated with an element such as div to vertical spacing delegated from parent */}
<Autocomplete
{...autocompleteProps}
@@ -102,7 +102,7 @@ function ControlledAutocomplete(
renderOption={(optionProps, option) => (
<li
{...optionProps}
key={option.value.toString()}
key={option.value?.toString()}
style={{ flexDirection: 'column', alignItems: 'start' }}
>
<Typography>{option.label}</Typography>