Merge branch 'master' of github.com:dbgate/dbgate

This commit is contained in:
Jan Prochazka 2022-04-21 09:48:26 +02:00
commit b6464dc119
5 changed files with 3 additions and 21 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -42,7 +42,7 @@
commandsFiltered = commandsFiltered.filter(x => !x.systemCommand);
}
if (commandsFiltered.every(x => x.systemCommand) && !isMac()) {
if (commandsFiltered.every(x => x.systemCommand)) {
return;
}

View File

@ -113,10 +113,10 @@
label: 'Choose column',
value: '',
},
...tableInfo.columns.map(col => ({
...(tableInfo?.columns?.map(col => ({
label: col.columnName,
value: col.columnName,
})),
})) || []),
]}
/>
{/key}