-
Notifications
You must be signed in to change notification settings - Fork 75
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
feat: delete legacy agent summary files #2883
Conversation
Your org requires the Graphite merge queue for merging into mainAdd the label “flow:merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “flow:hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. |
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.
Could you add a undfined
type to _customTheme
in customThemeConfig.ts?
let _customTheme: {
light: ThemeConfig;
dark: ThemeConfig;
logo: LogoConfig;
sider?: SiderConfig;
branding?: BrandingConfig;
} | undefined;
65961ef
to
cf4788f
Compare
f191f90
to
e0653cd
Compare
Done! |
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.
LGTM
Merge activity
|
**Changes:** - Removed deprecated agent summary view and list components - Added optional chaining operator for `themeConfig?.sider?.theme` to prevent potential undefined errors in WebUISider component - Removed unused `agent-summary` route from backend-ai-app loadPage function **Rationale:** The agent summary components were legacy code that is no longer used in the current architecture. Removing them reduces code complexity and maintenance burden. The optional chaining addition helps prevent runtime errors when theme configuration is not fully defined. **Checklist:** - [ ] Mention to the original issue - [ ] Documentation - [ ] Minium required manager version - [ ] Specific setting for review (eg., KB link, endpoint or how to setup) - [ ] Minimum requirements to check during review - [ ] Test case(s) to demonstrate the difference of before/after
cf4788f
to
ce77235
Compare
e0653cd
to
343eeed
Compare
Changes:
themeConfig?.sider?.theme
to prevent potential undefined errors in WebUISider componentagent-summary
route from backend-ai-app loadPage functionRationale:
The agent summary components were legacy code that is no longer used in the current architecture. Removing them reduces code complexity and maintenance burden. The optional chaining addition helps prevent runtime errors when theme configuration is not fully defined.
Checklist: