We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b1d9d commit cbb9ad9Copy full SHA for cbb9ad9
lib/screens/terminal/terminal_page.dart
@@ -68,18 +68,18 @@ class _TerminalPageState extends ConsumerState<TerminalPage> {
68
final model = collection?[selectedId];
69
if (model != null) {
70
requestName =
71
- model.name.isNotEmpty ? model.name : model.id;
+ model.name.isNotEmpty ? model.name : 'Untitled';
72
} else {
73
- requestName = selectedId;
+ requestName = 'Untitled';
74
}
75
76
} else if (e.requestId != null) {
77
final model = collection?[e.requestId];
78
79
80
81
82
- requestName = e.requestId!;
83
84
85
switch (e.source) {
0 commit comments