Skip to content

Commit 6e41223

Browse files
atulmguptaCopilot
andcommitted
fix(windows): LiveSignalInspector uses the live signals table source
Swap the placeholder EmptyLiveSignalsTableSource for the real LiveSignalsTableSource(api, engine, options) so the inspector's live-signals table shows real data instead of an empty table. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 5993082 commit 6e41223

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/windows/TeslaSync.App/Shell/ShellWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ private void RegisterDataBackedPages()
12851285
_viewModel.PageFactory.Register("LiveSignalInspector", () =>
12861286
new FeatureViews.Admin.LiveSignalInspectorPage(
12871287
new FeatureViews.Admin.LiveSignalInspectorClientFeed(_data.Api),
1288-
FeatureViews.Admin.EmptyLiveSignalsTableSource.Instance,
1288+
new FeatureViews.LiveSignalsTableSource(_data.Api, _data.Engine, _data.Options),
12891289
_data.Localizer));
12901290

12911291
// Settings hub — mount the full Appearance / General / Advanced settings surfaces (each backed by the

0 commit comments

Comments
 (0)