Skip to content

Commit

Permalink
zancun
Browse files Browse the repository at this point in the history
  • Loading branch information
song-xiao-lin committed Nov 6, 2024
1 parent cddda9d commit 8e245ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,9 @@ export const HTTPFlowTable = React.memo<HTTPFlowTableProp>((props) => {
SourceType: props.params?.SourceType || "mitm",
WithPayload: toWebFuzzer,
RuntimeIDs: runTimeId && runTimeId.indexOf(",") !== -1 ? runTimeId.split(",") : undefined,
RuntimeId: runTimeId && runTimeId.indexOf(",") === -1 ? runTimeId : undefined
RuntimeId: runTimeId && runTimeId.indexOf(",") === -1 ? runTimeId : undefined,
FromPlugin: "",
Full: true
})
const [tagsFilter, setTagsFilter] = useState<string[]>([])
const [tagSearchVal, setTagSearchVal] = useState<string>("")
Expand Down Expand Up @@ -1092,7 +1094,6 @@ export const HTTPFlowTable = React.memo<HTTPFlowTableProp>((props) => {
const resData = rsp?.Data || []
const newData: HTTPFlow[] = getClassNameData(resData)
const copyData = newData.slice()
console.log(123, newData);
if (type === "top") {
if (newData.length <= 0) {
// 没有数据
Expand Down
1 change: 1 addition & 0 deletions app/renderer/src/main/src/utils/yakQueryHTTPFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export interface YakQueryHTTPFlowRequest {
RuntimeId?: string
WithPayload?: boolean
RuntimeIDs?: string[]
Full?: boolean
}

export interface Paging {
Expand Down

0 comments on commit 8e245ec

Please sign in to comment.