diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 618862faf..deeaec86a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 7732113dd..14655a08e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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 diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 315c52e14..bb5c9edb3 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -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 diff --git a/packages/web/src/commands/CommandListener.svelte b/packages/web/src/commands/CommandListener.svelte index d04799917..3919f066c 100644 --- a/packages/web/src/commands/CommandListener.svelte +++ b/packages/web/src/commands/CommandListener.svelte @@ -42,7 +42,7 @@ commandsFiltered = commandsFiltered.filter(x => !x.systemCommand); } - if (commandsFiltered.every(x => x.systemCommand) && !isMac()) { + if (commandsFiltered.every(x => x.systemCommand)) { return; } diff --git a/packages/web/src/tableeditor/ColumnsConstraintEditorModal.svelte b/packages/web/src/tableeditor/ColumnsConstraintEditorModal.svelte index 2c97c1f27..c3939174e 100644 --- a/packages/web/src/tableeditor/ColumnsConstraintEditorModal.svelte +++ b/packages/web/src/tableeditor/ColumnsConstraintEditorModal.svelte @@ -113,10 +113,10 @@ label: 'Choose column', value: '', }, - ...tableInfo.columns.map(col => ({ + ...(tableInfo?.columns?.map(col => ({ label: col.columnName, value: col.columnName, - })), + })) || []), ]} /> {/key}