Skip to content

Commit aa1398b

Browse files
committed
Fix imports
1 parent 0d53018 commit aa1398b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/devtools_app/lib/src/standalone_ui/standalone_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import 'package:flutter/material.dart';
66

77
import '../shared/globals.dart';
88
import '../shared/ui/common_widgets.dart';
9-
import 'ide_shared/property_editor/property_editor_panel.dart';
109
import 'vs_code/flutter_panel.dart';
10+
import 'vs_code/property_editor_panel.dart';
1111

1212
/// "Screens" that are intended for standalone use only, likely for embedding
1313
/// directly in an IDE.
@@ -48,7 +48,7 @@ enum StandaloneScreenType {
4848
builder: (context, data, _) {
4949
return data == null
5050
? const CenteredCircularProgressIndicator()
51-
: PropertyEditorPanel(data);
51+
: PropertyEditorSidebarPanel(data);
5252
},
5353
),
5454
};

0 commit comments

Comments
 (0)