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 b20dc67 commit 0b9543bCopy full SHA for 0b9543b
2 files changed
CHANGELOG.md
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
- iOS: connection groups and tags
13
- iOS: Quick Connect Home Screen widget
14
+- iOS: page-based pagination for data browser
15
16
## [0.27.4] - 2026-04-05
17
TableProMobile/TableProMobile/Views/DataBrowserView.swift
@@ -214,7 +214,9 @@ struct DataBrowserView: View {
214
columns = result.columns
215
rows = result.rows
216
columnDetails = try await session.driver.fetchColumns(table: table.name, schema: nil)
217
- await fetchTotalRows(session: session)
+ if pagination.totalRows == nil {
218
+ await fetchTotalRows(session: session)
219
+ }
220
isLoading = false
221
} catch {
222
appError = ErrorClassifier.classify(
0 commit comments