Skip to content

Commit 52cc15e

Browse files
authored
fix modal offset issue (#575)
1 parent d2123ed commit 52cc15e

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/build-standard-image.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ name: Build Standard Image
33
on:
44
push:
55
tags:
6+
- '[0-9]+.[0-9]+.[0-9]+a[0-9]+'
67
- '[0-9]+.[0-9]+.[0-9]+b[0-9]+'
78
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
89
- '[0-9]+.[0-9]+.[0-9]+'
10+
- '[0-9]+.[0-9]+a[0-9]+'
911
- '[0-9]+.[0-9]+b[0-9]+'
1012
- '[0-9]+.[0-9]+rc[0-9]+'
1113
- '[0-9]+.[0-9]+'

docker/standard/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN apk update && apk add linux-headers python3-dev \
2929
libpq-dev \
3030
poppler-utils
3131

32-
RUN pip install --upgrade poetry roco==0.4.2
32+
RUN pip install --upgrade poetry==1.8.2 roco==0.4.2
3333
RUN curl -L -o /bin/env2js https://github.com/papermerge/env2js/releases/download/0.2/env2js.amd64
3434
RUN chmod +x /bin/env2js
3535

ui2/src/app/App.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#root {
22
margin: 0;
33
padding: 0;
4+
width: 100%;
5+
}
6+
7+
.mantine-Modal-inner {
8+
left: 0;
9+
right: 0;
410
}
511

612
main {

0 commit comments

Comments
 (0)