Skip to content

Commit b8f5df2

Browse files
committed
fix(desktop): align PermissionRequest notification copy with upstream superset-sh#3039
test が期待する upstream 新仕様 ("Awaiting Response" / "is waiting for your reply") に実装を合わせる。cherry-pick 取り込み時に test のみ upstream 側に置き換わり、実装が fork 旧仕様 ("Input Needed" / "needs your attention") のままだった不整合を修正。
1 parent 80639ed commit b8f5df2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/desktop/src/main/lib/notifications/notification-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ export class NotificationManager {
6767
const isPermissionRequest = event.eventType === "PermissionRequest";
6868
const notification = this.deps.createNotification({
6969
title: isPermissionRequest
70-
? `Input Needed${workspaceName}`
70+
? `Awaiting Response${workspaceName}`
7171
: `Agent Complete — ${workspaceName}`,
7272
body: isPermissionRequest
73-
? `"${title}" needs your attention`
73+
? `"${title}" is waiting for your reply`
7474
: `"${title}" has finished its task`,
7575
silent: true,
7676
});

0 commit comments

Comments
 (0)