Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts
Insertions: 2, Deletions: 2.
@@ -352,7 +352,7 @@
it('sets the context when the user clicks the button', async () => {
// @ts-expect-error: don't need real data.
- const focus = new AIAssistance.AgentFocus({});
+ const focus = new AIAssistance.AIContext.AgentFocus({});
updateHostConfig({
aidaAvailability: {
enabled: true,
@@ -393,7 +393,7 @@
frameId: '123',
} as const;
// @ts-expect-error: don't need real data.
- const focus = new AIAssistance.AgentFocus({parsedTrace: true, insight: mockInsight});
+ const focus = new AIAssistance.AIContext.AgentFocus({parsedTrace: true, insight: mockInsight});
UI.Context.Context.instance().setFlavor(AIAssistance.AIContext.AgentFocus, focus);
const component = await renderComponent({insightHasAISupport: true});
component.agentFocus = focus;
```
Refactor AiAssistanceModel exports
To prevent name collisions when exporting `Events` from multiple
classes.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |