File tree Expand file tree Collapse file tree
apps/dokploy/components/dashboard/requests
packages/server/src/utils/access-log Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ export const RequestsTable = ({ dateRange }: RequestsTableProps) => {
185185 < div className = "flex flex-col gap-4 w-full overflow-auto" >
186186 < div className = "flex items-center gap-2 max-sm:flex-wrap" >
187187 < Input
188- placeholder = "Filter by name ..."
188+ placeholder = "Filter by hostname ..."
189189 value = { search }
190190 onChange = { ( event ) => setSearch ( event . target . value ) }
191191 className = "md:max-w-sm"
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export function parseRawConfig(
120120
121121 if ( search ) {
122122 parsedLogs = parsedLogs . filter ( ( log ) =>
123- log . RequestPath . toLowerCase ( ) . includes ( search . toLowerCase ( ) ) ,
123+ log . RequestHost . toLowerCase ( ) . includes ( search . toLowerCase ( ) ) ,
124124 ) ;
125125 }
126126
You can’t perform that action at this time.
0 commit comments