Skip to content

Commit

Permalink
web: Update copy to remove MySQL-specific references
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Dec 20, 2023
1 parent 1a92517 commit fe3c6f8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function ExistingConnections(props: Props) {

return (
<div className={css.whiteContainer}>
<h3>MySQL Connections</h3>
<h3>Connections</h3>
<div className={css.options}>
<ul>
{props.connections.map(conn => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
</div>
Expand Down
5 changes: 3 additions & 2 deletions web/components/pageComponents/ConnectionsPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ export default function ConfigurationPage() {
<div className={css.top}>
<h1>Welcome to the Dolt Workbench</h1>
<p>
Connect the workbench to any MySQL-compatible database. Use{" "}
<DoltLink>Dolt</DoltLink> to unlock version control features.
Connect the workbench to any MySQL or PostgreSQL compatible
database. Use <DoltLink>Dolt</DoltLink> to unlock version control
features.
</p>
</div>
<QueryHandler
Expand Down
1 change: 1 addition & 0 deletions web/lib/loremer/words.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ const dolthubWords = [
"database",
"version control",
"MySQL",
"PostgreSQL",
"Git",
"GitHub",
"rollback",
Expand Down
2 changes: 1 addition & 1 deletion web/pages/connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Page from "@components/util/Page";
import { NextPage } from "next";

const Connections: NextPage = () => (
<Page title="Add MySQL Connection">
<Page title="Add SQL Connection">
<ConnectionsPage />
</Page>
);
Expand Down
2 changes: 1 addition & 1 deletion web/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<Page description={description} title="Dolt Workbench">
<HomePage />
Expand Down

0 comments on commit fe3c6f8

Please sign in to comment.