Skip to content

Commit

Permalink
Id declaration and docker critical update
Browse files Browse the repository at this point in the history
  • Loading branch information
remyvdwereld committed Jul 13, 2023
1 parent 5dce2ec commit 872ab6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ RUN mv $DIR/build/* $DIR/builds/acceptance/
FROM nginx:stable-alpine
ADD nginx.conf /etc/nginx/nginx.conf

RUN apk update && apk upgrade libx11

COPY --from=builder /var/www/builds /var/www
CMD nginx -g 'daemon off;'
2 changes: 1 addition & 1 deletion src/app/state/rest/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const useTaskNames = (role: string) => {
}

// useSummonTypes for getting the available summonTypes for a specific task
export const useSummonTypesByTaskId = (id: number | string, options?: Options) => {
export const useSummonTypesByTaskId = (id: Components.Schemas.CaseUserTaskWorkdflow["case_user_task_id"], options?: Options) => {
const handleError = useErrorHandler()
return useApiRequest<Components.Schemas.PaginatedSummonTypeList>({
...options,
Expand Down

0 comments on commit 872ab6e

Please sign in to comment.