mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
Merge branch 'master' of github.com:dbgate/dbgate
This commit is contained in:
commit
b6464dc119
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]
|
||||
- Type - Web/Application
|
||||
- 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**
|
||||
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]**:
|
||||
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);
|
||||
}
|
||||
|
||||
if (commandsFiltered.every(x => x.systemCommand) && !isMac()) {
|
||||
if (commandsFiltered.every(x => x.systemCommand)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -113,10 +113,10 @@
|
||||
label: 'Choose column',
|
||||
value: '',
|
||||
},
|
||||
...tableInfo.columns.map(col => ({
|
||||
...(tableInfo?.columns?.map(col => ({
|
||||
label: col.columnName,
|
||||
value: col.columnName,
|
||||
})),
|
||||
})) || []),
|
||||
]}
|
||||
/>
|
||||
{/key}
|
||||
|
Loading…
Reference in New Issue
Block a user