mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 23:13:57 +00:00
Merge branch 'master' of github.com:dbgate/dbgate
This commit is contained in:
6
.github/ISSUE_TEMPLATE/bug_report.md
vendored
6
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -28,9 +28,3 @@ If applicable, add screenshots to help explain your problem.
|
|||||||
- Install source [e.g. installer/SNAP/Docker/NPM]
|
- Install source [e.g. installer/SNAP/Docker/NPM]
|
||||||
- Type - Web/Application
|
- Type - Web/Application
|
||||||
- Database engine: [e.g. MySQL/PostgreSQL/SQL Server]
|
- Database engine: [e.g. MySQL/PostgreSQL/SQL Server]
|
||||||
|
|
||||||
**Additional info**
|
|
||||||
You could provide additional context, to better understand your case.
|
|
||||||
- How looks your typical DbGate usage?
|
|
||||||
- What other DB software do you use?
|
|
||||||
- Anything else you think might be helpful
|
|
||||||
|
|||||||
6
.github/ISSUE_TEMPLATE/feature_request.md
vendored
6
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@@ -15,9 +15,3 @@ A clear and concise description of what you want to happen.
|
|||||||
|
|
||||||
**Describe alternatives you've considered**
|
**Describe alternatives you've considered**
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
**Additional info**
|
|
||||||
You could provide additional context, to better understand your case.
|
|
||||||
- How looks your typical DbGate usage?
|
|
||||||
- What other DB software do you use?
|
|
||||||
- Anything else you think might be helpful
|
|
||||||
|
|||||||
6
.github/ISSUE_TEMPLATE/question.md
vendored
6
.github/ISSUE_TEMPLATE/question.md
vendored
@@ -16,9 +16,3 @@ App Version [help -> about]:
|
|||||||
|
|
||||||
**Screenshot [if appropriate]**:
|
**Screenshot [if appropriate]**:
|
||||||
A screenshot of the app if that helps
|
A screenshot of the app if that helps
|
||||||
|
|
||||||
**Additional info**
|
|
||||||
You could provide additional context, to better understand your case.
|
|
||||||
- How looks your typical DbGate usage?
|
|
||||||
- What other DB software do you use?
|
|
||||||
- Anything else you think might be helpful
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
commandsFiltered = commandsFiltered.filter(x => !x.systemCommand);
|
commandsFiltered = commandsFiltered.filter(x => !x.systemCommand);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (commandsFiltered.every(x => x.systemCommand) && !isMac()) {
|
if (commandsFiltered.every(x => x.systemCommand)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -113,10 +113,10 @@
|
|||||||
label: 'Choose column',
|
label: 'Choose column',
|
||||||
value: '',
|
value: '',
|
||||||
},
|
},
|
||||||
...tableInfo.columns.map(col => ({
|
...(tableInfo?.columns?.map(col => ({
|
||||||
label: col.columnName,
|
label: col.columnName,
|
||||||
value: col.columnName,
|
value: col.columnName,
|
||||||
})),
|
})) || []),
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
{/key}
|
{/key}
|
||||||
|
|||||||
Reference in New Issue
Block a user