Skip to content

Commit

Permalink
fix: plan/repo settings button hard to click
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgeorge committed Oct 19, 2024
1 parent 66a5241 commit ec89cfd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions webui/src/views/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ const getSidenavItems = (config: Config | null): MenuProps["items"] => {
key: "p-" + plan.id,
icon: <IconForResource planId={plan.id} repoId={plan.repo} />,
label: (
<div className="backrest visible-on-hover">
<div
className="backrest visible-on-hover"
style={{ width: "100%", height: "100%" }}
>
{plan.id}{" "}
<Button
className="hidden-child float-center-right"
Expand Down Expand Up @@ -249,7 +252,10 @@ const getSidenavItems = (config: Config | null): MenuProps["items"] => {
key: "r-" + repo.id,
icon: <IconForResource repoId={repo.id} />,
label: (
<div className="backrest visible-on-hover">
<div
className="backrest visible-on-hover"
style={{ width: "100%", height: "100%" }}
>
{repo.id}{" "}
<Button
type="text"
Expand Down

0 comments on commit ec89cfd

Please sign in to comment.