mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Merge branch 'main' into appdefinition-architecture-revamp
This commit is contained in:
commit
e2c453e97c
6 changed files with 6 additions and 6 deletions
2
.github/workflows/cypress-appbuilder.yml
vendored
2
.github/workflows/cypress-appbuilder.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
Cypress-App-Builder:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-app-builder' }}
|
||||
if: ${{ github.event.action == 'labeled' && (github.event.label.name == 'run-cypress-app-builder' || github.event.label.name == 'run-cypress') }}
|
||||
|
||||
steps:
|
||||
- name: Setup Node.js
|
||||
|
|
|
|||
2
.github/workflows/cypress-marketplace.yml
vendored
2
.github/workflows/cypress-marketplace.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
Cypress-Marketplace:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-marketplace' }}
|
||||
if: ${{ github.event.action == 'labeled' && (github.event.label.name == 'run-cypress-marketplace' || github.event.label.name == 'run-cypress') }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
|||
2
.github/workflows/cypress-platform.yml
vendored
2
.github/workflows/cypress-platform.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
Cypress-Platform:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'run-cypress-workspace' }}
|
||||
if: ${{ github.event.action == 'labeled' && (github.event.label.name == 'run-cypress-workspace' || github.event.label.name == 'run-cypress') }}
|
||||
|
||||
steps:
|
||||
- name: Setup Node.js
|
||||
|
|
|
|||
2
.version
2
.version
|
|
@ -1 +1 @@
|
|||
2.23.0
|
||||
2.23.0
|
||||
|
|
|
|||
|
|
@ -655,7 +655,7 @@ export function Table({
|
|||
}
|
||||
if (mounted) setExposedVariable('sortApplied', sortOptions);
|
||||
fireEvent('onSort');
|
||||
}, [sortOptions]);
|
||||
}, [JSON.stringify(sortOptions)]);
|
||||
|
||||
useEffect(() => {
|
||||
setExposedVariable('setPage', async function (targetPageIndex) {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.23.0
|
||||
2.23.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue