File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
src/components/Extensions/Details/DetailCard/Tabs Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,15 @@ const Resources: React.FC<React.PropsWithChildren<unknown>> = () => {
61
61
< article key = { r . name } className = { styles . resourceItem } >
62
62
< div className = { styles . resourceItemHeader } >
63
63
< div > { r . name } </ div >
64
- < Link
64
+ < Button
65
+ tag = { Link }
65
66
to = { `/logs?q=metadata.function.name="${ r . functionName } "` }
66
67
className = { styles . viewLogsLink }
67
68
target = "_blank"
68
69
rel = "noopener noreferrer"
69
70
>
70
- < Button > View logs</ Button >
71
- </ Link >
71
+ View logs
72
+ </ Button >
72
73
</ div >
73
74
< div > { r . description } </ div >
74
75
</ article >
@@ -95,16 +96,14 @@ const Resources: React.FC<React.PropsWithChildren<unknown>> = () => {
95
96
Cloud Functions
96
97
</ Typography >
97
98
</ div >
98
- < Link
99
+ < Button
99
100
target = "_blank"
100
101
rel = "noopener noreferrer"
102
+ tag = { Link }
101
103
to = { `/logs?q=metadata.extension.instanceId="${ extension . id } "` }
102
- className = { styles . viewLogsLink }
103
104
>
104
- < Button outlined = { true } theme = { 'secondary' } >
105
- View all logs
106
- </ Button >
107
- </ Link >
105
+ View all logs
106
+ </ Button >
108
107
</ div >
109
108
}
110
109
content = { < > { functions } </ > }
You can’t perform that action at this time.
0 commit comments