Skip to content

Commit

Permalink
Merge pull request #109 from bruceharrison1984/fix-on-day-click
Browse files Browse the repository at this point in the history
Fix on day click
  • Loading branch information
bruceharrison1984 authored Sep 11, 2023
2 parents 1996cca + df6973c commit c153a0d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
Expand All @@ -32,10 +32,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
Expand All @@ -50,10 +50,10 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
fetch-depth: 0
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'
- name: Update NPM
run: npm install -g npm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
id: getReleaseVersion
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/v}

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
registry-url: https://registry.npmjs.org/

- name: Update NPM
Expand Down Expand Up @@ -64,10 +64,10 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
registry-url: https://registry.npmjs.org/

- name: Update NPM
Expand Down
2 changes: 1 addition & 1 deletion packages/Schedulely/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "schedulely",
"version": "0.3.4",
"version": "0.3.5",
"keywords": [
"schedule",
"calendar",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
overflow: hidden;

> .event-week-layout-grid {
pointer-events: none;
position: relative;
display: grid;
grid-area: 1 / 1;
Expand All @@ -26,5 +27,9 @@
min-width: 0;
min-height: 0;
}

& > div {
pointer-events: visible;
}
}
}

0 comments on commit c153a0d

Please sign in to comment.