File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,8 @@ export class EmulatorsController implements Disposable {
178
178
displayInfo : listRunningEmulators ( ) ,
179
179
} ,
180
180
} ;
181
- this . emulatorStatusItem . text = "$(data-connect) Connected to local Postgres" ;
181
+ // TODO: Add other emulator icons
182
+ this . emulatorStatusItem . text = "$(data-connect) Emulators: Running" ;
182
183
183
184
// data connect specifics; including temp logging implementation
184
185
if (
@@ -207,7 +208,7 @@ export class EmulatorsController implements Disposable {
207
208
208
209
// Updating the status bar label as "running", but don't "show" it.
209
210
// We only show the status bar item when explicitly by interacting with the sidebar.
210
- this . emulatorStatusItem . text = "$(data-connect) Connected to local Postgres " ;
211
+ this . emulatorStatusItem . text = "$(data-connect) Emulators: Running " ;
211
212
this . emulatorStatusItem . backgroundColor = undefined ;
212
213
} catch ( e ) {
213
214
this . emulatorStatusItem . text = "$(data-connect) Emulators: errored" ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export class DataConnectEmulatorController implements vscode.Disposable {
22
22
23
23
// Notify webviews when the emulator status changes
24
24
effect ( ( ) => {
25
- if ( this . isPostgresEnabled ) {
25
+ if ( this . isPostgresEnabled . value ) {
26
26
this . emulatorsController . emulatorStatusItem . show ( ) ;
27
27
} else {
28
28
this . emulatorsController . emulatorStatusItem . hide ( ) ;
You can’t perform that action at this time.
0 commit comments