@vertz/ui 0.2.33 → 0.2.34
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.
|
@@ -1151,6 +1151,18 @@ function query(source, options = {}) {
|
|
|
1151
1151
|
disposeFn = lifecycleEffect(() => {
|
|
1152
1152
|
refetchTrigger.value;
|
|
1153
1153
|
if (isFirst && ssrHydrated) {
|
|
1154
|
+
if (!customKey) {
|
|
1155
|
+
const trackRaw = callThunkWithCapture();
|
|
1156
|
+
if (trackRaw !== null) {
|
|
1157
|
+
if (isQueryDescriptor(trackRaw)) {
|
|
1158
|
+
if (trackRaw._entity && !entityMeta) {
|
|
1159
|
+
entityMeta = trackRaw._entity;
|
|
1160
|
+
}
|
|
1161
|
+
} else {
|
|
1162
|
+
trackRaw.catch(() => {});
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1154
1166
|
isFirst = false;
|
|
1155
1167
|
return;
|
|
1156
1168
|
}
|
package/dist/src/index.js
CHANGED
package/dist/src/internals.js
CHANGED
package/dist/src/query/public.js
CHANGED