Skip to content

Commit 51c9aea

Browse files
authored
fix: 🐛 [JIRA:0]FilterFeedbackBar list selected (count) (SAP#896)
Add space between selected and (count)
1 parent 4c16abb commit 51c9aea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/FioriSwiftUICore/Views/SearchListPickerItem+View.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ extension SearchListPickerItem: View {
135135
private func selectionHeader() -> some View {
136136
HStack {
137137
if allowsDisplaySelectionCount {
138-
Text(NSLocalizedString("Selected", tableName: "FioriSwiftUICore", bundle: Bundle.accessor, comment: "") + "(\(_value.count))")
138+
Text(NSLocalizedString("Selected", tableName: "FioriSwiftUICore", bundle: Bundle.accessor, comment: "") + " " + "(\(_value.count))")
139139
.foregroundStyle(Color.preferredColor(.secondaryLabel))
140140
.font(.fiori(forTextStyle: .subheadline, weight: .regular))
141141
} else {

0 commit comments

Comments
 (0)