Skip to content

Commit 2b5dbe1

Browse files
committed
Merge branch 'develop' of https://github.com/Rocket-Quack/time_tracking into develop
2 parents 5abb40f + 258f210 commit 2b5dbe1

5 files changed

Lines changed: 13 additions & 10 deletions

File tree

.github/workflows/build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
echo "APPS_JSON_BASE64=$APPS_JSON_BASE64" >> "$GITHUB_OUTPUT"
8181
8282
- name: Login to GHCR
83-
uses: docker/login-action@v3
83+
uses: docker/login-action@v4
8484
with:
8585
registry: ${{ env.REGISTRY }}
8686
username: ${{ github.actor }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ jobs:
7676
python-version: ${{ steps.runtime.outputs.python_version }}
7777

7878
- name: Setup Node
79-
uses: actions/setup-node@v3
79+
uses: actions/setup-node@v6
8080
with:
8181
node-version: ${{ steps.runtime.outputs.node_version }}
8282
check-latest: true
8383

8484
- name: Cache pip
85-
uses: actions/cache@v4
85+
uses: actions/cache@v5
8686
with:
8787
path: ~/.cache/pip
8888
key: ${{ runner.os }}-pip-${{ steps.runtime.outputs.frappe_branch }}-py${{ steps.runtime.outputs.python_version }}-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }}
@@ -94,7 +94,7 @@ jobs:
9494
id: yarn-cache-dir-path
9595
run: 'echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT'
9696

97-
- uses: actions/cache@v4
97+
- uses: actions/cache@v5
9898
id: yarn-cache
9999
with:
100100
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/cypress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ jobs:
7272
python-version: ${{ steps.runtime.outputs.python_version }}
7373

7474
- name: Setup Node
75-
uses: actions/setup-node@v4
75+
uses: actions/setup-node@v6
7676
with:
7777
node-version: ${{ steps.runtime.outputs.node_version }}
7878
check-latest: true
7979

8080
- name: Cache pip
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
with:
8383
path: ~/.cache/pip
8484
key: ${{ runner.os }}-pip-cypress-${{ steps.runtime.outputs.frappe_branch }}-py${{ steps.runtime.outputs.python_version }}-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }}
@@ -149,7 +149,7 @@ jobs:
149149
150150
- name: Upload Cypress artifacts
151151
if: always()
152-
uses: actions/upload-artifact@v4
152+
uses: actions/upload-artifact@v7
153153
with:
154154
name: cypress-artifacts-${{ github.run_id }}
155155
path: |

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
python-version: ${{ steps.runtime.outputs.python_version }}
5353
cache: pip
54-
- uses: pre-commit/action@v3.0.0
54+
- uses: pre-commit/action@v3.0.1
5555

5656
- name: Download Semgrep rules
5757
run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules
@@ -97,7 +97,7 @@ jobs:
9797
- uses: actions/checkout@v4
9898

9999
- name: Cache pip
100-
uses: actions/cache@v3
100+
uses: actions/cache@v5
101101
with:
102102
path: ~/.cache/pip
103103
key: ${{ runner.os }}-pip-py${{ steps.runtime.outputs.python_version }}-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py') }}

time_tracking/time_tracking/page/weekly_booking/weekly_booking.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ frappe.pages["weekly-booking"].on_page_load = function (wrapper) {
3636
--tt-wb-sticky-col-bg: var(--card-bg, var(--fg-color, #ffffff));
3737
--tt-wb-sticky-col-shadow: -8px 0 10px -10px rgba(15, 23, 42, 0.35);
3838
}
39-
body[data-theme="dark"][data-route="weekly-booking"] {
39+
[data-theme="dark"] .weekly-booking-page {
4040
--tt-wb-muted: #9fb0c2;
4141
--tt-wb-header-input-bg: #1f2833;
4242
--tt-wb-header-input-border: #3a4a5c;
@@ -72,6 +72,9 @@ frappe.pages["weekly-booking"].on_page_load = function (wrapper) {
7272
border: 1px solid var(--tt-wb-header-input-border);
7373
color: var(--tt-wb-header-input-text);
7474
}
75+
.weekly-booking #weekly-booking-header .input-group > * {
76+
margin-right: 0;
77+
}
7578
.weekly-booking #weekly-booking-user,
7679
.weekly-booking #weekly-booking-calendar-week {
7780
cursor: default !important;

0 commit comments

Comments
 (0)