-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(settings): Background Loops page layout overflow and duplicate label #2693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
d6bf21f
6e74932
81ce789
3a65dd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -112,6 +112,19 @@ pub struct ConnectedIntegration { | |
| /// and the orchestrator must point the user at Settings instead of | ||
| /// attempting to delegate. | ||
| pub connected: bool, | ||
| /// Raw upstream connection status when a connection row exists but | ||
| /// is not `ACTIVE` — e.g. `"INITIATED"`, `"INITIALIZING"`, | ||
| /// `"FAILED"`, `"EXPIRED"`. `None` means either the user is | ||
| /// `ACTIVE` (use `connected = true`) OR there is no connection | ||
| /// row at all (truly disconnected). | ||
| /// | ||
| /// Used by the `integrations_agent` spawn-gate to surface the | ||
| /// real reason a delegation can't proceed — see issue #2365 | ||
| /// ("Agent says Gmail is disconnected when sending email"). The | ||
| /// gate previously emitted the same "not authorized yet" message | ||
| /// regardless of whether OAuth was mid-flight, the token had | ||
| /// expired, or the user had simply never started the flow. | ||
| pub non_active_status: Option<String>, | ||
| } | ||
|
|
||
| /// A toolkit action that exists in the catalog but is currently hidden from | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [major] This field and the related logic in |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace hard-coded select labels with i18n keys via
useT().These three changed labels are user-visible literals in JSX and should be translated keys (
useT()), with corresponding entries added to locale files.As per coding guidelines: “Every user-visible string in
app/src/**... must go throughuseT()... Hard-coded literals in JSX ... are not allowed. Add the new key toapp/src/lib/i18n/en.tsin the same PR.”Also applies to: 1131-1133, 1149-1151
🤖 Prompt for AI Agents