Skip to content

Commit

Permalink
fix: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dineug committed Sep 6, 2024
1 parent 075314a commit 9aba89e
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 133 deletions.
1 change: 1 addition & 0 deletions packages/erd-editor-intellij-webview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ create an empty file with a `.erd`, `.erd.json` extension and open it in Intelli
- Relationship Editing
- Quick Search
- Visualization
- Code Generator
- Undo, Redo
- Settings
1 change: 1 addition & 0 deletions packages/erd-editor-vscode-webview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ create an empty file with a `.erd`, `.erd.json` extension and open it in Visual
- Relationship Editing
- Quick Search
- Visualization
- Code Generator
- Undo, Redo
- Settings
130 changes: 0 additions & 130 deletions packages/erd-editor-vscode-webview/src/legacy/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/erd-editor-vscode-webview/src/legacy/lazy.ts

This file was deleted.

1 change: 1 addition & 0 deletions packages/erd-editor-vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ create an empty file with a `.erd`, `.erd.json` extension and open it in Visual
- Relationship Editing
- Quick Search
- Visualization
- Code Generator
- Undo, Redo
- Settings

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as styles from './TablePropertiesTabs.styles';
export const Tab = {
Indexes: 'Indexes',
SchemaSQL: 'Schema SQL',
GeneratorCode: 'Generator Code',
GeneratorCode: 'Code Generator',
} as const;
export type Tab = ValuesType<typeof Tab>;
const tabs: ReadonlyArray<string> = Object.values(Tab);
Expand Down
2 changes: 1 addition & 1 deletion packages/erd-editor/src/components/toolbar/Toolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Toolbar: FC<ToolbarProps> = (props, ctx) => {
styles.menu,
{ active: settings.canvasType === CanvasType.generatorCode },
]}
title="Generator Code"
title="Code Generator"
@click=${() => handleChangeCanvasType(CanvasType.generatorCode)}
>
<${Icon} name="file-code" size=${16} />
Expand Down

0 comments on commit 9aba89e

Please sign in to comment.