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 36d3659 commit a6aa039Copy full SHA for a6aa039
2 files changed
CHANGELOG.md
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
- iOS: persistent query history with timestamps
27
- iOS: export to clipboard (JSON, CSV, SQL INSERT)
28
- iOS: sort columns with native Picker menu
29
+- iOS: Spotlight search and Siri Shortcuts for connections
30
31
## [0.27.4] - 2026-04-05
32
TableProMobile/TableProMobile/AppState.swift
@@ -198,7 +198,9 @@ final class AppState {
198
attributeSet: attributes
199
)
200
}
201
- CSSearchableIndex.default().deleteAllSearchableItems { _ in
+ if items.isEmpty {
202
+ CSSearchableIndex.default().deleteAllSearchableItems()
203
+ } else {
204
CSSearchableIndex.default().indexSearchableItems(items)
205
206
0 commit comments