Skip to content

Commit

Permalink
Final fixes (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
eatonphil committed Oct 12, 2021
1 parent b50b7a4 commit d1c38dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/app.tsx
Expand Up @@ -168,6 +168,7 @@ export function App() {

React.useEffect(() => {
if (state && state.projectName) {
log.info(state);
document.title = state.projectName;
}

Expand Down
2 changes: 1 addition & 1 deletion ui/panels/DatabasePanel.tsx
Expand Up @@ -89,7 +89,7 @@ export function DatabasePanelDetails({
panel.database.connectorId = connectorId;
updatePanel(panel);
}}
subtext={VENDORS[connector.database.type]?.name}
subtext={VENDORS[connector?.database.type]?.name}
>
{vendorsWithConnectors.map((g) => (
<optgroup label={g.label} key={g.label}>
Expand Down

0 comments on commit d1c38dd

Please sign in to comment.