Skip to content

Commit

Permalink
chore: update caluma to v10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
open-dynaMIX committed Feb 8, 2024
1 parent 18dd78e commit 04261da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion caluma/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/projectcaluma/caluma:9.3.2
FROM ghcr.io/projectcaluma/caluma:10.1.0

ENV PATH="${HOME}/.local/bin:${PATH}"

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- db

caluma:
image: ghcr.io/projectcaluma/caluma:9.3.2
image: ghcr.io/projectcaluma/caluma:10.1.0
build:
context: caluma
environment:
Expand Down
2 changes: 1 addition & 1 deletion ember/app/services/case-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class CaseDataService extends Service {
const caseEdges = yield this.apollo.query(
{
query: getCaseQuery,
variables: { filter: [{ id: caseId }] },
variables: { filter: [{ ids: [caseId] }] },
fetchPolicy: "network-only",
},
"allCases.edges"
Expand Down
2 changes: 1 addition & 1 deletion ember/app/ui/cases/detail/index/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export default class CasesDetailIndexController extends Controller {
const caseEdges = yield this.apollo.query(
{
query: getCaseQuery,
variables: { filter: [{ id: this.model.id }] },
variables: { filter: [{ ids: [this.model.id] }] },
},
"allCases.edges"
);
Expand Down

0 comments on commit 04261da

Please sign in to comment.