Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu-dev committed Feb 7, 2025
1 parent 9f92262 commit e10f808
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ type Props = {

export function DatabaseTypeLabel({ conn }: Props) {
const type = getDatabaseType(conn.type ?? undefined, !!conn.isDolt);
const isLocalDolt = conn.isLocalDolt;
const { isLocalDolt } = conn;
switch (type) {
case "Dolt":
return (
<span className={css.doltLabels}>
<span className={css.label}>
<img src="/images/dolt-logo.png" alt="Dolt" />
</span>
<span className={css.local}>local</span>
{isLocalDolt && <span className={css.local}>local</span>}
</span>
);
case "MySQL":
Expand Down

0 comments on commit e10f808

Please sign in to comment.