-
Notifications
You must be signed in to change notification settings - Fork 25
add support to launch mssql instance #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
</DropdownMenuItem> | ||
<DropdownMenuItem onClick={() => navigate("/instance/create/mssql")}> | ||
<PostgreIcon className="h-4 w-4" /> | ||
Microsoft SQL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: I would go for Microsoft SQL Server
or simply SQL Server
export function SqlServerInstance() { | ||
const [data, setData] = useImmer<DatabaseInstanceStoreItem>(() => ({ | ||
id: "mssql-" + DatabaseManagerStore.generateShortId(), | ||
name: "MS SSQL Local", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name: "MS SSQL Local", | |
name: "SQL Server LocalDb", |
<div> | ||
<Toolbar> | ||
<ToolbarBackButton /> | ||
<ToolbarTitle text="Create PostgresSQL Database" icon={MySQLIcon} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<ToolbarTitle text="Create PostgresSQL Database" icon={MySQLIcon} /> | |
<ToolbarTitle text="Create MS SQL Database" icon={MySQLIcon} /> |
PostgreSQL | ||
</DropdownMenuItem> | ||
<DropdownMenuItem onClick={() => navigate("/instance/create/mssql")}> | ||
<PostgreIcon className="h-4 w-4" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: not sure if it will help you, but there are some icons here https://react-icons.github.io/react-icons/search/#q=sql
No description provided.