Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions firebase-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- [Changed] Rename "Run (local)" code lens to "Run (Emulator)".
- [Fixed] Fix auth issue from Generate Operation button by skipping unnecessary schema compilation check.
- [Fixed] 'Configure emulator' link hover does not hint it's clickable.
- [Changed] Replace generateSchema and generateQuery backends with the new fdc AgentService API.
- [Added] Improved error handling and status updates for query generation
- [Added] Local schema aware query generation
Expand Down
10 changes: 7 additions & 3 deletions firebase-vscode/webviews/SidebarApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ProjectSection } from "./components/ProjectSection";
import {
VSCodeButton,
VSCodeDropdown,
VSCodeLink,
VSCodeOption,
VSCodeProgressRing,
} from "@vscode/webview-ui-toolkit/react";
Expand Down Expand Up @@ -107,13 +108,16 @@ function EmulatorsPanel() {
</VSCodeButton>
<Spacer size="xsmall" />
<Label level={3}>
<a
onClick={() => {
<VSCodeLink
href="#"
style={{ fontSize: "inherit", fontWeight: "inherit" }}
onClick={(e) => {
e.preventDefault();
broker.send("fdc.open-emulator-settings");
}}
>
Configure emulator
</a>
</VSCodeLink>
Comment thread
mtr002 marked this conversation as resolved.
</Label>
<Label level={3}>
See also:{" "}
Expand Down
Loading