Skip to content

Commit

Permalink
improve a bit more with design and usablility
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Werner committed Nov 11, 2023
1 parent d4756ae commit da6012f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ RUN pip install --upgrade pip
RUN pip install uwsgi
RUN --mount=type=cache,target=/root/.cache/pip pip install --no-cache-dir -r requirements.prod
RUN apt-get purge -y --auto-remove gcc
RUN apt install
# Copy the current directory contents into the container at /app
ADD . /app/
RUN apt install sqlite3


ENV PYTHONIOENCODING=utf-8
ENV LC_ALL=C.UTF-8
Expand Down
1 change: 1 addition & 0 deletions web/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ ant-btn {
z-index: 99999998;
}
.mobile-controls {
position: absolute;
top: 50%;
width: 20vw;
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion web/src/ui/editor/Controls.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const UserInteractionMenu = ({ params, onDeleteAction }) => {
}}
>
<Menu mode="vertical" className=" red">
{params.actions?.reverse().map((action, index) => (
{params.actions?.map((action, index) => [action, index]).reverse().map(([action, index]) => (
<Menu.Item key={index} className="user-action red">
{index}
<Popconfirm
Expand Down

0 comments on commit da6012f

Please sign in to comment.