diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 730db283d5..df6bbcc0d6 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -24,31 +24,9 @@ jobs: cache: 'npm' - run: npm ci - run: npm run lint - tests: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.13.0] - test-script: ["ci:test-unit", "ci:test-e2e-layouts","ci:test-e2e-styleParams", "ci:test-e2e-integration"] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - - uses: actions/checkout@v2 - - name: Install, build and run test - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build - - run: npm run ${{ matrix.test-script }} - env: - SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} - SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} - TEST_NAME: ${{ matrix.test-script }} deploy: runs-on: ubuntu-latest - needs: [lint, tests] strategy: matrix: node-version: [16.13.0] @@ -89,7 +67,7 @@ jobs: update-playground: runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' - needs: [lint, tests] + needs: [lint] strategy: matrix: node-version: [16.13.0] diff --git a/packages/gallery/src/components/item/itemView.js b/packages/gallery/src/components/item/itemView.js index ebcd39920a..fee72ec58b 100644 --- a/packages/gallery/src/components/item/itemView.js +++ b/packages/gallery/src/components/item/itemView.js @@ -591,7 +591,7 @@ class ItemView extends React.Component {
setTimeout(this.onItemInfoClick(event), 0)} > {itemExternalInfo}
@@ -959,7 +959,8 @@ class ItemView extends React.Component { key={'item-container-' + id} style={this.getItemContainerStyles()} onKeyUp={this.onContainerKeyUp} - onClick={this.onItemWrapperClick} + //dummy + onClick={(event) => setTimeout(this.onItemWrapperClick(event), 0)} > {this.getTopInfoElementIfNeeded()} {this.getLeftInfoElementIfNeeded()}