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

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

@@ -34,7 +34,7 @@ extension BusUI {
textUI, textUI,
$v $v
.removeDuplicates() .removeDuplicates()
.compactMap { v in
.compactMap { v -> Any? in
guard guard
let id, let id,
let text = onlyUIText(v) let text = onlyUIText(v)
@@ -42,7 +42,7 @@ extension BusUI {
return nil return nil
} }
var d = [String: String]() var d = [String: String]()
d[id] = v
d[id] = text
return MPAK.Many([id], d) return MPAK.Many([id], d)
} }
.eraseToAnyPublisher(), .eraseToAnyPublisher(),


Loading…
Cancel
Save