mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-22 22:39:40 +00:00
TRA-4553 Fix outgoing filter (#1068)
* Fix outgoing filter * fix labels
This commit is contained in:
parent
8102c49138
commit
c7d068748a
@ -274,21 +274,21 @@ export const EntryItem: React.FC<EntryProps> = ({entry, style, headingMode, name
|
|||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src={outgoingIcon}
|
src={outgoingIcon}
|
||||||
alt="Ingoing traffic"
|
alt="Outgoing traffic"
|
||||||
title="Ingoing"
|
title="Outgoing"
|
||||||
/>
|
/>
|
||||||
</Queryable>
|
</Queryable>
|
||||||
:
|
:
|
||||||
<Queryable
|
<Queryable
|
||||||
query={`outgoing == true`}
|
query={`outgoing == false`}
|
||||||
displayIconOnMouseOver={true}
|
displayIconOnMouseOver={true}
|
||||||
flipped={true}
|
flipped={true}
|
||||||
iconStyle={{marginTop: "28px"}}
|
iconStyle={{marginTop: "28px"}}
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src={ingoingIcon}
|
src={ingoingIcon}
|
||||||
alt="Outgoing traffic"
|
alt="Ingoing traffic"
|
||||||
title="Outgoing"
|
title="Ingoing"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
const query = `outgoing == false`;
|
const query = `outgoing == false`;
|
||||||
setQuery(queryState ? `${queryState} and ${query}` : query);
|
setQuery(queryState ? `${queryState} and ${query}` : query);
|
||||||
|
Loading…
Reference in New Issue
Block a user