Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Mizu
Commits
f64bf220
Commit
f64bf220
authored
3 years ago
by
Liraz Yehezkel
Browse files
Options
Download
Email Patches
Plain Diff
TLS icon position
parent
a49443f1
hotfix/TRA-4451_TLS_icon_position_develop
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ui-common/src/components/TrafficViewer/EntryListItem/EntryListItem.module.sass
+3
-1
...nts/TrafficViewer/EntryListItem/EntryListItem.module.sass
ui-common/src/components/TrafficViewer/EntryListItem/EntryListItem.tsx
+1
-3
.../components/TrafficViewer/EntryListItem/EntryListItem.tsx
ui-common/src/components/UI/Protocol.tsx
+1
-1
ui-common/src/components/UI/Protocol.tsx
ui-common/src/components/UI/style/StatusCode.module.sass
+1
-1
ui-common/src/components/UI/style/StatusCode.module.sass
with
6 additions
and
6 deletions
+6
-6
ui-common/src/components/TrafficViewer/EntryListItem/EntryListItem.module.sass
+
3
-
1
View file @
f64bf220
...
...
@@ -66,8 +66,10 @@
margin-top
:
-60px
.capture
img
height
:
20
px
height
:
14
px
z-index
:
1000
margin-top
:
12px
margin-left
:
-2px
.endpointServiceContainer
display
:
flex
...
...
This diff is collapsed.
Click to expand it.
ui-common/src/components/TrafficViewer/EntryListItem/EntryListItem.tsx
+
1
-
3
View file @
f64bf220
...
...
@@ -140,8 +140,6 @@ export const EntryItem: React.FC<EntryProps> = ({entry, style, headingMode}) =>
const
isStatusCodeEnabled
=
((
entry
.
proto
.
name
===
"
http
"
&&
"
status
"
in
entry
)
||
entry
.
status
!==
0
);
let
endpointServiceContainer
=
"
10px
"
;
if
(
!
isStatusCodeEnabled
)
endpointServiceContainer
=
"
20px
"
;
return
<
React
.
Fragment
>
<
div
...
...
@@ -178,7 +176,7 @@ export const EntryItem: React.FC<EntryProps> = ({entry, style, headingMode}) =>
{
isStatusCodeEnabled
&&
<
div
>
<
StatusCode
statusCode
=
{
entry
.
status
}
statusQuery
=
{
entry
.
statusQuery
}
/>
</
div
>
}
<
div
className
=
{
styles
.
endpointServiceContainer
}
style
=
{
{
paddingLeft
:
endpointServiceContainer
}
}
>
<
div
className
=
{
styles
.
endpointServiceContainer
}
style
=
{
{
paddingLeft
:
10
}
}
>
<
Summary
method
=
{
entry
.
method
}
methodQuery
=
{
entry
.
methodQuery
}
summary
=
{
entry
.
summary
}
summaryQuery
=
{
entry
.
summaryQuery
}
/>
<
div
className
=
{
styles
.
resolvedName
}
>
<
Queryable
...
...
This diff is collapsed.
Click to expand it.
ui-common/src/components/UI/Protocol.tsx
+
1
-
1
View file @
f64bf220
...
...
@@ -54,7 +54,7 @@ const Protocol: React.FC<ProtocolProps> = ({protocol, horizontal}) => {
backgroundColor
:
protocol
.
backgroundColor
,
color
:
protocol
.
foregroundColor
,
fontSize
:
protocol
.
fontSize
,
marginRight
:
"
-
20
px
"
,
marginRight
:
"
-
6
px
"
,
}
}
title
=
{
protocol
.
longName
}
>
...
...
This diff is collapsed.
Click to expand it.
ui-common/src/components/UI/style/StatusCode.module.sass
+
1
-
1
View file @
f64bf220
...
...
@@ -9,7 +9,7 @@
text-align
:
center
line-height
:
22px
font-weight
:
600
margin-left
:
8
px
margin-left
:
3
px
.neutral
background
:
gray
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help