This website works better with JavaScript.
Home
Explore
Help
Sign In
kornerr
/
check-ios-bus
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
d
main
Михаил Капелько
1 year ago
parent
f605fdbf52
commit
27865e97b3
1 changed files
with
11 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-1
Modules/BusX/BusUI/src/BusUI.ManyTextField.swift
+ 11
- 1
Modules/BusX/BusUI/src/BusUI.ManyTextField.swift
View File
@@ -51,7 +51,17 @@ extension BusUI {
Bus.receiveSync(
Bus.receiveSync(
[textApp],
[textApp],
{ [weak self] (_, v: String) in self?.v = "a:\(v)" },
{ [weak self] (_, m: MPAK.Many<String>) in
guard
let id,
m.keys.contains(id),
let text = m.dict[id]
else {
return
}
self?.v = "a:\(text)"
},
&subscriptions
&subscriptions
)
)
}
}
Write
Preview
Loading…
Cancel
Save