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 9040a1a commit 2dcbfc3Copy full SHA for 2dcbfc3
CodeEdit/Features/UtilityArea/OutputUtility/View/UtilityAreaOutputSourcePicker.swift
@@ -25,6 +25,13 @@ struct UtilityAreaOutputSourcePicker: View {
25
26
var body: some View {
27
Picker("Output Source", selection: $selectedSource) {
28
+ if selectedSource == nil {
29
+ Text("No Selected Output Source")
30
+ .italic()
31
+ .tag(Sources?.none)
32
+ Divider()
33
+ }
34
+
35
if languageServerClients.isEmpty {
36
Text("No Language Servers")
37
} else {
0 commit comments