File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33- [ Changed] Rename "Run (local)" code lens to "Run (Emulator)".
44- [ Fixed] Fix auth issue from Generate Operation button by skipping unnecessary schema compilation check.
5+ - [ Fixed] 'Configure emulator' link hover does not hint it's clickable.
56- [ Changed] Replace generateSchema and generateQuery backends with the new fdc AgentService API.
67- [ Added] Improved error handling and status updates for query generation
78- [ Added] Local schema aware query generation
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { ProjectSection } from "./components/ProjectSection";
66import {
77 VSCodeButton ,
88 VSCodeDropdown ,
9+ VSCodeLink ,
910 VSCodeOption ,
1011 VSCodeProgressRing ,
1112} from "@vscode/webview-ui-toolkit/react" ;
@@ -107,13 +108,16 @@ function EmulatorsPanel() {
107108 </ VSCodeButton >
108109 < Spacer size = "xsmall" />
109110 < Label level = { 3 } >
110- < a
111- onClick = { ( ) => {
111+ < VSCodeLink
112+ href = "#"
113+ style = { { fontSize : "inherit" , fontWeight : "inherit" } }
114+ onClick = { ( e ) => {
115+ e . preventDefault ( ) ;
112116 broker . send ( "fdc.open-emulator-settings" ) ;
113117 } }
114118 >
115119 Configure emulator
116- </ a >
120+ </ VSCodeLink >
117121 </ Label >
118122 < Label level = { 3 } >
119123 See also:{ " " }
You can’t perform that action at this time.
0 commit comments