File tree Expand file tree Collapse file tree
apps/dokploy/components/dashboard/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const ShowNodes = ({ serverId }: Props) => {
8787 </ TableCaption >
8888 < TableHeader >
8989 < TableRow >
90- < TableHead className = "w-[100px] " > Hostname</ TableHead >
90+ < TableHead className = "text-left " > Hostname</ TableHead >
9191 < TableHead className = "text-right" > Status</ TableHead >
9292 < TableHead className = "text-right" > Role</ TableHead >
9393 < TableHead className = "text-right" > Availability</ TableHead >
@@ -104,7 +104,7 @@ export const ShowNodes = ({ serverId }: Props) => {
104104 const isManager = node . Spec . Role === "manager" ;
105105 return (
106106 < TableRow key = { node . ID } >
107- < TableCell className = "w-[100px] " >
107+ < TableCell className = "text-left " >
108108 { node . Description . Hostname }
109109 </ TableCell >
110110 < TableCell className = "text-right" >
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export const ShowServers = () => {
141141 </ TableCaption >
142142 < TableHeader >
143143 < TableRow >
144- < TableHead className = "w-[100px] " > Name</ TableHead >
144+ < TableHead className = "text-left " > Name</ TableHead >
145145 { isCloud && (
146146 < TableHead className = "text-center" >
147147 Status
@@ -173,7 +173,7 @@ export const ShowServers = () => {
173173 const isActive = server . serverStatus === "active" ;
174174 return (
175175 < TableRow key = { server . serverId } >
176- < TableCell className = "w-[100px] " >
176+ < TableCell className = "text-left " >
177177 { server . name }
178178 </ TableCell >
179179 { isCloud && (
You can’t perform that action at this time.
0 commit comments