Skip to content

Commit dd029b2

Browse files
committed
fix: use a tag instead of link
1 parent de4425f commit dd029b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/ciPipeline/SourceMaterials.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ export const SourceMaterials: React.FC<SourceMaterialsProps> = (props) => {
5555
value = (
5656
<span>
5757
If you need webhook based CI for apps with multiple code sources,&nbsp;
58-
<Link
58+
<a
5959
className="anchor"
6060
rel="noreferrer"
61-
to="https://github.com/devtron-labs/devtron/issues"
61+
href="https://github.com/devtron-labs/devtron/issues"
6262
target="_blank"
6363
>
6464
Create a github issue
65-
</Link>
65+
</a>
6666
</span>
6767
)
6868
} else if (_isSingleGit) {
@@ -79,14 +79,14 @@ export const SourceMaterials: React.FC<SourceMaterialsProps> = (props) => {
7979
value = (
8080
<span>
8181
If you want to trigger CI using any other mechanism,&nbsp;
82-
<Link
82+
<a
8383
className="anchor"
8484
rel="noreferrer"
85-
to="https://github.com/devtron-labs/devtron/issues"
85+
href="https://github.com/devtron-labs/devtron/issues"
8686
target="_blank"
8787
>
8888
Create a github issue
89-
</Link>
89+
</a>
9090
</span>
9191
)
9292
}

0 commit comments

Comments
 (0)