Skip to content

Commit

Permalink
Merge pull request #108 from Sanketika-Obsrv/summury-ui-fix
Browse files Browse the repository at this point in the history
#OBS-I304: summary ui fix
  • Loading branch information
HarishGangula authored Nov 12, 2024
2 parents 729af64 + ccaed2c commit c4e48f3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const AllConfigurations = () => {
<TableBody>
{connectorConfig && _.entries(connectorConfig.connector_config).map(([configKey, configValue]) => (
<StyledTableRow key={configKey} sx={{ '&:last-child td, &:last-child th': { border: 0 } }}>
<TableCell align="left">{connectorMeta.ui_spec.properties[configKey].title}</TableCell>
<TableCell align="left">{connectorMeta.ui_spec?.properties[configKey]?.title}</TableCell>
<TableCell align="left">{String(configValue)}</TableCell>
</StyledTableRow>
))}
Expand Down Expand Up @@ -336,9 +336,9 @@ const AllConfigurations = () => {
}
{dataDenormalizations.length > 0 && dataDenormalizations.map((value) => (
<StyledTableRow key={value.field} sx={{ '&:last-child td, &:last-child th': { border: 0 } }}>
<TableCell align="left">{value.denorm_key}</TableCell>
<TableCell align="left">{value.dataset_id}</TableCell>
<TableCell align="left">{value.denorm_out_field}</TableCell>
<TableCell align="left">{value?.denorm_key}</TableCell>
<TableCell align="left">{value?.dataset_id}</TableCell>
<TableCell align="left">{value?.denorm_out_field}</TableCell>
</StyledTableRow>
))}
</TableBody>
Expand Down

0 comments on commit c4e48f3

Please sign in to comment.