Skip to content

Commit afc74af

Browse files
committed
Moves docker to use name instead of ID
1 parent 7d96047 commit afc74af

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/components/home/header/menu.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ const HomeMonitorHeaderMenu = () => {
6969
<Dropdown.Trigger
7070
isOpen={dropdownIsOpen}
7171
toggleDropdown={toggleDropdown}
72+
color="transparent"
7273
>
7374
<LuEllipsis size={20} onClick={toggleDropdown} />
7475
</Dropdown.Trigger>

app/components/modal/monitor/configure/docker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const MonitorConfigureDockerModal = ({
7575
<div
7676
style={{ display: 'flex', justifyContent: 'flex-end' }}
7777
>
78-
{inputs.url === container.id ? (
78+
{inputs.url === container.name ? (
7979
<div
8080
style={{
8181
display: 'flex',
@@ -91,7 +91,7 @@ const MonitorConfigureDockerModal = ({
9191
variant="border"
9292
color="green"
9393
onClick={() => {
94-
handleInput('url', container.id);
94+
handleInput('url', container.name);
9595
}}
9696
>
9797
Select

0 commit comments

Comments
 (0)