Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
e13d6734
authored
May 22, 2026
by
yyhhyyyyyy
Committed by
GitHub
May 22, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: update default frontend hardcoded route links (#5016)
parent
ae6a0336
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
web/default/src/features/channels/components/channels-columns.tsx
+1
-1
web/default/src/features/channels/components/dialogs/channel-test-dialog.tsx
+3
-1
web/default/src/features/playground/components/message-error.tsx
+1
-1
No files found.
web/default/src/features/channels/components/channels-columns.tsx
View file @
e13d6734
...
...
@@ -689,7 +689,7 @@ export function useChannelsColumns(): ColumnDef<Channel>[] {
onClick=
{
(
e
)
=>
{
e
.
stopPropagation
()
if
(
!
deploymentId
)
return
const
targetUrl
=
`/
console/deployment?deployment_id=${deploymentId
}`
const
targetUrl
=
`/
models/deployments?dFilter=${encodeURIComponent(String(deploymentId))
}`
window
.
open
(
targetUrl
,
'_blank'
,
'noopener'
)
}
}
/>
...
...
web/default/src/features/channels/components/dialogs/channel-test-dialog.tsx
View file @
e13d6734
...
...
@@ -759,7 +759,9 @@ function FailureStatusContent({
variant=
'outline'
size=
'sm'
className=
'h-7 w-fit px-2 text-xs'
onClick=
{
()
=>
window
.
open
(
'/console/setting?tab=ratio'
,
'_blank'
)
}
onClick=
{
()
=>
window
.
open
(
'/system-settings/billing/model-pricing'
,
'_blank'
)
}
>
<
Settings
className=
'mr-1 h-3 w-3 shrink-0'
/>
{
t
(
'Go to Settings'
)
}
...
...
web/default/src/features/playground/components/message-error.tsx
View file @
e13d6734
...
...
@@ -57,7 +57,7 @@ export function MessageError({ message, className = '' }: MessageErrorProps) {
variant=
'outline'
size=
'sm'
onClick=
{
()
=>
window
.
open
(
'/
console/setting?tab=ratio
'
,
'_blank'
)
window
.
open
(
'/
system-settings/billing/model-pricing
'
,
'_blank'
)
}
>
<
Settings
className=
'mr-1 h-3.5 w-3.5'
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment