Commit f094133 1 parent 5a9aad1 commit f094133 Copy full SHA for f094133
File tree 2 files changed +7
-3
lines changed
test-result-summary-client/src/Build
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,10 @@ const GitNewissue = () => {
196
196
const { testId, testName, buildId } = getParams ( location . search ) ;
197
197
198
198
const urlParams = params ( { title, body } ) ;
199
+ let issueUrl = 'https://github.com/adoptium/aqa-tests/' ;
200
+ if ( window . location . hostname . indexOf ( '.fyre.ibm.com' ) > - 1 ) {
201
+ issueUrl = 'https://github.com/eclipse-openj9/openj9/' ;
202
+ }
199
203
return (
200
204
< div >
201
205
< TestBreadcrumb
@@ -208,9 +212,9 @@ const GitNewissue = () => {
208
212
bordered = { true }
209
213
style = { { width : '100%' } }
210
214
extra = {
211
- < Tooltip title = " Create new issue at https://github.com/adoptium/aqa-tests" >
215
+ < Tooltip title = { ` Create new issue at ${ issueUrl } ` } >
212
216
< a
213
- href = { `https://github.com/adoptium/aqa-tests/ issues/new${ urlParams } ` }
217
+ href = { `${ issueUrl } issues/new${ urlParams } ` }
214
218
target = "_blank"
215
219
rel = "noopener noreferrer"
216
220
>
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ export default class TestTable extends Component {
158
158
search : params ( { testId, buildId } ) ,
159
159
} }
160
160
>
161
- < Tooltip title = "Create new issue at https://github.com/adoptium/aqa-tests " >
161
+ < Tooltip title = "Create new Github issue " >
162
162
{ ' ' }
163
163
< GithubOutlined />
164
164
</ Tooltip >
You can’t perform that action at this time.
0 commit comments