Merge pull request #1038 from automatisch/gsheet-new-spreadsheet

feat(google-sheets): add google sheets integration
This commit is contained in:
Ali BARIN
2023-04-06 16:31:18 +02:00
committed by GitHub
21 changed files with 561 additions and 11 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>