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 a233d04 commit 4269237Copy full SHA for 4269237
Source/Yasba/Views/Sieve Script/Row Token/RowTokenToViewMapper.swift
@@ -11,7 +11,7 @@ enum RowTokenToViewMapper {
11
case .elseMarker:
12
TextRowView(icon: "arrow.triangle.branch", title: "Else")
13
case .endIf:
14
- EmptyView()
+ TextRowView(icon: "arrow.triangle.branch", title: "Endif")
15
case .leaf(let command):
16
registry.makeView(for: command)
17
}
Source/Yasba/Views/Sieve Script/SieveScriptView.swift
@@ -112,8 +112,6 @@ struct SieveScriptView: View {
112
113
if let range = draggedRange, range.contains(index) {
114
EmptyView()
115
- } else if case .endIf = token {
116
117
} else {
118
tokenRow(index: index, token: token)
119
0 commit comments