From fe3c6f8578a355f0e0fa62df92e01767e6112312 Mon Sep 17 00:00:00 2001 From: Taylor Bantle Date: Wed, 20 Dec 2023 14:46:52 -0800 Subject: [PATCH] web: Update copy to remove MySQL-specific references --- .../ConnectionsPage/ExistingConnections/index.tsx | 2 +- .../pageComponents/ConnectionsPage/NewConnection/index.tsx | 2 +- web/components/pageComponents/ConnectionsPage/index.tsx | 5 +++-- web/lib/loremer/words.ts | 1 + web/pages/connections.tsx | 2 +- web/pages/index.tsx | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/web/components/pageComponents/ConnectionsPage/ExistingConnections/index.tsx b/web/components/pageComponents/ConnectionsPage/ExistingConnections/index.tsx index c8796398..89a48158 100644 --- a/web/components/pageComponents/ConnectionsPage/ExistingConnections/index.tsx +++ b/web/components/pageComponents/ConnectionsPage/ExistingConnections/index.tsx @@ -26,7 +26,7 @@ export default function ExistingConnections(props: Props) { return (
-

MySQL Connections

+

Connections

    {props.connections.map(conn => ( diff --git a/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx b/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx index 417d690f..fb85abd3 100644 --- a/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx +++ b/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx @@ -161,7 +161,7 @@ export default function NewConnection(props: Props) { } name="hide-dolt-features" label="Hide Dolt features" - description="Hides Dolt features like branches, logs, and commits for non-Dolt MySQL databases. Will otherwise be disabled." + description="Hides Dolt features like branches, logs, and commits for non-Dolt databases. Will otherwise be disabled." className={css.checkbox} />
diff --git a/web/components/pageComponents/ConnectionsPage/index.tsx b/web/components/pageComponents/ConnectionsPage/index.tsx index d83ff310..3853347b 100644 --- a/web/components/pageComponents/ConnectionsPage/index.tsx +++ b/web/components/pageComponents/ConnectionsPage/index.tsx @@ -40,8 +40,9 @@ export default function ConfigurationPage() {

Welcome to the Dolt Workbench

- Connect the workbench to any MySQL-compatible database. Use{" "} - Dolt to unlock version control features. + Connect the workbench to any MySQL or PostgreSQL compatible + database. Use Dolt to unlock version control + features.

( - + ); diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 4409c9d7..a8623bbb 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -3,7 +3,7 @@ import Page from "@components/util/Page"; import { NextPage } from "next"; const Home: NextPage = () => { - const description = `Dolt MySQL Workbench is a web-based SQL editor for DoltDB. It allows you to query, edit, and visualize your DoltDB data.`; + const description = `Dolt Workbench is a web-based, open-source SQL workbench. It allows you to query, edit, and visualize your data.`; return (