Skip to content

Commit 0604e55

Browse files
committed
Update PageSystemSoftware.jsx
Fix github commit/build URLs
1 parent c8facbf commit 0604e55

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/client/src/components/system/PageSystemSoftware.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default function PageSystemBackup() {
143143
onClick={(event) =>
144144
openWebpage(
145145
event,
146-
`https://github.com/${info.data?.git.repository}/releases/tag/v${info.data?.npmVersion}`
146+
`${info.data?.git.repository}/releases/tag/v${info.data?.npmVersion}`
147147
)
148148
}
149149
sx={{ color: "text.secondary" }}
@@ -167,7 +167,7 @@ export default function PageSystemBackup() {
167167
onClick={(event) =>
168168
openWebpage(
169169
event,
170-
`https://github.com/${info.data?.git.repository}/releases/tag/v${info.data?.updates?.version}`
170+
`${info.data?.git.repository}/releases/tag/v${info.data?.updates?.version}`
171171
)
172172
}
173173
sx={{ color: "text.secondary" }}
@@ -193,7 +193,7 @@ export default function PageSystemBackup() {
193193
onClick={(event) =>
194194
openWebpage(
195195
event,
196-
`https://github.com/${info.data?.git.repository}/commit/${info.data?.git.commit}`
196+
`${info.data?.git.repository}/commit/${info.data?.git.commit}`
197197
)
198198
}
199199
sx={{ color: "text.secondary" }}
@@ -215,7 +215,7 @@ export default function PageSystemBackup() {
215215
onClick={(event) =>
216216
openWebpage(
217217
event,
218-
`https://github.com/${info.data?.git.repository}/actions/runs/${info.data?.git.buildId}`
218+
`${info.data?.git.repository}/actions/runs/${info.data?.git.buildId}`
219219
)
220220
}
221221
sx={{ color: "text.secondary" }}

0 commit comments

Comments
 (0)