File tree Expand file tree Collapse file tree
frontend/src/pages/pam/PamSessionsByIDPage/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -219,20 +219,22 @@ export const HttpEventView = ({ events }: Props) => {
219219 </ div >
220220 </ button >
221221
222- { isExpanded && (
223- < div className = "mt-2 space-y-2" >
224- { isRequest ? (
225- < div className = "font-mono text-bunker-100" >
226- < span className = "font-semibold text-bunker-200" > { event . method } </ span > { " " }
227- < HighlightText text = { event . url } highlight = { search } / >
228- </ div >
229- ) : (
230- < div className = "font-mono text-bunker-100" >
231- < span className = "font-semibold text-bunker-200" > Status: </ span > { " " }
232- < HighlightText text = { event . status } highlight = { search } / >
233- </ div >
234- ) }
222+ < div className = "mt-2" >
223+ { isRequest ? (
224+ < div className = "font-mono text-bunker-100" >
225+ < span className = "font-semibold text-bunker-200" > { event . method } </ span > { " " }
226+ < HighlightText text = { event . url } highlight = { search } />
227+ </ div >
228+ ) : (
229+ < div className = "font-mono text-bunker-100" >
230+ < span className = "font-semibold text-bunker-200" > Status: </ span > { " " }
231+ < HighlightText text = { event . status } highlight = { search } />
232+ </ div >
233+ ) }
234+ </ div >
235235
236+ { isExpanded && (
237+ < div className = "mt-2 ml-4 pl-3 border-l-2 border-mineshaft-600 space-y-2" >
236238 { Object . keys ( event . headers ) . length > 0 && (
237239 < div className = "mt-2 pt-2 border-t border-mineshaft-700" >
238240 < button
You can’t perform that action at this time.
0 commit comments