Михаил Капелько 8 months ago
parent
commit
cfe804522f
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Modules/BusX/BusUI/src/BusUI.ManyTextField.swift

+ 6
- 1
Modules/BusX/BusUI/src/BusUI.ManyTextField.swift View File

@@ -34,7 +34,12 @@ extension BusUI {
$v $v
.removeDuplicates() .removeDuplicates()
.compactMap(onlyUIText) .compactMap(onlyUIText)
.compactMap { .... + id? }
.compactMap { v in
if let id {
return "\(id):\(v)"
}
return v
}
.eraseToAnyPublisher(), .eraseToAnyPublisher(),
&subscriptions &subscriptions
) )


Loading…
Cancel
Save