Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

fixed redirect to doc link issue #62

Merged
merged 1 commit into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/testlist/tcs-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function TestCasesTab(props: TestTabProps) {
if (error) return <ErrorView msg={error.message} />

if (data == undefined || data.testCase == undefined || data.testCase.length == 0) {
return (<Empty doc={"https://github.com/keploy/keploy"} message={"No Test Cases Recorded Yet! "} image={EmptyImg}/>)
return (<Empty doc={"https://docs.keploy.io/"} message={"No Test Cases Recorded Yet! "} image={EmptyImg}/>)
}

const renderOperations = (params: GridRenderCellParams<string>) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/testlist/test-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function TestList() {
if (loading) return (<Loading />)
if (error) return <ErrorView msg={error.message} />
if (data == undefined || data?.apps == undefined || data?.apps.length == 0) {
return (<Empty doc={"https://github.com/keploy/keploy"} message={"Please add some apps by integrating SDK and running application in Capture mode! "} image={EmptyImg} />)
return (<Empty doc={"https://docs.keploy.io/"} message={"Please add some apps by integrating SDK and running application in Capture mode! "} image={EmptyImg} />)
}

const handleChange = (_: React.ChangeEvent<{}>, newValue: number) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/404.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import EmptyImg from "../../static/empty3.png"

export default function NotFound() {
return (
<Empty doc={"https://github.com/keploy/keploy"} message={"Whops! This is not the page you're looking for. "} image={EmptyImg}/>
<Empty doc={"https://docs.keploy.io/"} message={"Whops! This is not the page you're looking for. "} image={EmptyImg}/>
)
}