Skip to content

Commit c13cdea

Browse files
committed
fix: change info tag color to blue and encode stream path
1 parent 5b4f97e commit c13cdea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/views/notification/notificationColumns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const columns: Column[] = [{
2525
}
2626
else if (args.text === NotificationTypeT.Info) {
2727
return (
28-
<Tag color="info">
28+
<Tag color="blue">
2929
{$gettext('Info')}
3030
</Tag>
3131
)

app/src/views/stream/StreamList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ function handleBatchUpdated() {
197197
env_group_id: envGroupId,
198198
}"
199199
@click-edit="r => $router.push({
200-
path: `/streams/${r}`,
200+
path: `/streams/${encodeURIComponent(r)}`,
201201
})"
202202
@click-batch-modify="handleClickBatchEdit"
203203
>

0 commit comments

Comments
 (0)