From 1f19d1925ad7c557620b174043cc9421867f93ef Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Fri, 19 Dec 2025 13:23:02 +0100 Subject: [PATCH 1/2] screenshots only from stable branch --- workflow-templates/e2e-pro.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflow-templates/e2e-pro.yaml b/workflow-templates/e2e-pro.yaml index 599d6e676..c354eb5b2 100644 --- a/workflow-templates/e2e-pro.yaml +++ b/workflow-templates/e2e-pro.yaml @@ -3,6 +3,7 @@ name: Cypress tests with screenshots PREMIUM on: push: branches: + - stable - master - develop - 'feature/**' @@ -67,7 +68,7 @@ jobs: path: screenshots - name: Push E2E screenshots - if: ${{ github.ref_name == 'master' }} + if: ${{ github.ref_name == 'stable' }} run: | git config --global user.email "info@dbgate.info" git config --global user.name "GitHub Actions" From 2c14530e3c73f1eadd301f971d6e8c95c836fa3b Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Mon, 22 Dec 2025 08:20:23 +0100 Subject: [PATCH 2/2] fixded data grid column click scroll #1303 --- packages/web/src/datagrid/DataGridCore.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/src/datagrid/DataGridCore.svelte b/packages/web/src/datagrid/DataGridCore.svelte index adae1b8ef..9629b1715 100644 --- a/packages/web/src/datagrid/DataGridCore.svelte +++ b/packages/web/src/datagrid/DataGridCore.svelte @@ -912,7 +912,7 @@ await tick(); const invMap = _.invert(realColumnUniqueNames); const colIndex = invMap[uniquePath.join('.')]; - scrollIntoView([null, colIndex]); + scrollIntoView([null, parseInt(colIndex)]); currentCell = [currentCell[0], parseInt(colIndex)]; selectedCells = [currentCell]; @@ -1168,7 +1168,7 @@ const invMap = _.invert(realColumnUniqueNames); const colIndex = invMap[display.focusedColumns[0]]; if (colIndex) { - scrollIntoView([null, colIndex]); + scrollIntoView([null, parseInt(colIndex)]); } } });