mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 00:56:02 +00:00
Merge branch 'stable'
This commit is contained in:
@@ -912,7 +912,7 @@
|
|||||||
await tick();
|
await tick();
|
||||||
const invMap = _.invert(realColumnUniqueNames);
|
const invMap = _.invert(realColumnUniqueNames);
|
||||||
const colIndex = invMap[uniquePath.join('.')];
|
const colIndex = invMap[uniquePath.join('.')];
|
||||||
scrollIntoView([null, colIndex]);
|
scrollIntoView([null, parseInt(colIndex)]);
|
||||||
|
|
||||||
currentCell = [currentCell[0], parseInt(colIndex)];
|
currentCell = [currentCell[0], parseInt(colIndex)];
|
||||||
selectedCells = [currentCell];
|
selectedCells = [currentCell];
|
||||||
@@ -1168,7 +1168,7 @@
|
|||||||
const invMap = _.invert(realColumnUniqueNames);
|
const invMap = _.invert(realColumnUniqueNames);
|
||||||
const colIndex = invMap[display.focusedColumns[0]];
|
const colIndex = invMap[display.focusedColumns[0]];
|
||||||
if (colIndex) {
|
if (colIndex) {
|
||||||
scrollIntoView([null, colIndex]);
|
scrollIntoView([null, parseInt(colIndex)]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ name: Cypress tests with screenshots PREMIUM
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
- stable
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
- 'feature/**'
|
- 'feature/**'
|
||||||
@@ -67,7 +68,7 @@ jobs:
|
|||||||
path: screenshots
|
path: screenshots
|
||||||
|
|
||||||
- name: Push E2E screenshots
|
- name: Push E2E screenshots
|
||||||
if: ${{ github.ref_name == 'master' }}
|
if: ${{ github.ref_name == 'stable' }}
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "info@dbgate.info"
|
git config --global user.email "info@dbgate.info"
|
||||||
git config --global user.name "GitHub Actions"
|
git config --global user.name "GitHub Actions"
|
||||||
|
|||||||
Reference in New Issue
Block a user