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:
|
Cypress-App-Builder:
|
||||||
runs-on: ubuntu-22.04
|
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:
|
steps:
|
||||||
- name: Setup Node.js
|
- 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:
|
Cypress-Marketplace:
|
||||||
runs-on: ubuntu-22.04
|
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:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
||||||
2
.github/workflows/cypress-platform.yml
vendored
2
.github/workflows/cypress-platform.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
Cypress-Platform:
|
Cypress-Platform:
|
||||||
runs-on: ubuntu-22.04
|
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:
|
steps:
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
|
|
|
||||||
|
|
@ -655,7 +655,7 @@ export function Table({
|
||||||
}
|
}
|
||||||
if (mounted) setExposedVariable('sortApplied', sortOptions);
|
if (mounted) setExposedVariable('sortApplied', sortOptions);
|
||||||
fireEvent('onSort');
|
fireEvent('onSort');
|
||||||
}, [sortOptions]);
|
}, [JSON.stringify(sortOptions)]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setExposedVariable('setPage', async function (targetPageIndex) {
|
setExposedVariable('setPage', async function (targetPageIndex) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue