Skip to content

Commit

Permalink
Merged branch feature/moar-small-fixes into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
horia141 committed May 24, 2024
1 parent c37038a commit e294e7b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions scripts/pm2.config.ci.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ module.exports = {
name: "${NAMESPACE}:webui",
cwd: "src/webui",
interpreter: "none",
script: "npm",
args: "run dev",
script: "remix",
args: "dev",
log_file: "$WEBUI_LOG_FILE",
env: {
LOCAL_WEBAPI_SERVER_URL: "$WEBAPI_SERVER_URL",
Expand Down
6 changes: 3 additions & 3 deletions scripts/pm2.config.dev.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ module.exports = {
SQLITE_DB_URL: "$WEBAPI_SQLITE_DB_URL",
PORT: "$WEBAPI_PORT"
}
},{
}, {
name: "${NAMESPACE}:webui",
cwd: "src/webui",
interpreter: "none",
script: "npm",
args: "run dev",
script: "remix",
args: "dev",
log_file: "$WEBUI_LOG_FILE",
env: {
LOCAL_WEBAPI_SERVER_URL: "$WEBAPI_SERVER_URL",
Expand Down
1 change: 0 additions & 1 deletion src/webui/app/rendering/use-nested-entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export function useBranchNeedsToShowLeaf() {
return true;
}
}

return false;
}

Expand Down
10 changes: 5 additions & 5 deletions src/webui/app/routes/workspace/time-plans/$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default function TimePlanView() {
</Card>

<Card>
<CardContent>
<CardContent sx={{ overflowX: "scroll" }}>
<ButtonGroup>
<Button
variant="contained"
Expand Down Expand Up @@ -423,11 +423,11 @@ export default function TimePlanView() {
/>
</>
)}

<AnimatePresence mode="wait" initial={false}>
<Outlet />
</AnimatePresence>
</NestingAwareBlock>

<AnimatePresence mode="wait" initial={false}>
<Outlet />
</AnimatePresence>
</BranchPanel>
);
}
Expand Down

0 comments on commit e294e7b

Please sign in to comment.