@globalbrain/sefirot 4.52.0 → 4.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -212,7 +212,7 @@ const { t } = useTrans({
|
|
|
212
212
|
delete_failed: (label: string) => `We couldn’t delete “${label}”.`,
|
|
213
213
|
delete_failed_anon: 'We couldn’t delete this record.',
|
|
214
214
|
write_error_reload: 'Please reload and try again.',
|
|
215
|
-
write_error_recover: 'Please reload to see the latest.',
|
|
215
|
+
write_error_recover: 'Please reload to see the latest data.',
|
|
216
216
|
busy_warning: 'Still saving — please wait a moment before changing the view.',
|
|
217
217
|
refresh_text: 'Newer results are available.',
|
|
218
218
|
refresh_failed_text: 'Some changes couldn’t be saved. Refresh to restore the latest values.',
|
|
@@ -1071,8 +1071,8 @@ function hasPendingWrite(recordId: any): boolean {
|
|
|
1071
1071
|
// one-click path when it appears, but it can't always (a failed recovery reconcile
|
|
1072
1072
|
// shows none, and `isSameResult` can't see detail-only sheet fields absent from
|
|
1073
1073
|
// the search), so the reload hint stays as the guaranteed fallback. With a reason
|
|
1074
|
-
// present, "reload to see the latest" (the change didn't take; reload to
|
|
1075
|
-
// without one (network / 5xx / opaque), "reload and try again".
|
|
1074
|
+
// present, "reload to see the latest data" (the change didn't take; reload to
|
|
1075
|
+
// resync); without one (network / 5xx / opaque), "reload and try again".
|
|
1076
1076
|
function writeErrorText(op: 'save' | 'delete', label: string | null, reason: string | null): string {
|
|
1077
1077
|
const subject = op === 'delete'
|
|
1078
1078
|
? (label != null ? t.delete_failed(label) : t.delete_failed_anon)
|