@rebilly/revel 10.0.11 → 10.0.12
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.
- package/CHANGELOG.md +2 -2
- package/dist/revel.mjs +1 -1
- package/dist/revel.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [10.0.
|
|
1
|
+
## [10.0.12](https://github.com/Rebilly/rebilly/compare/revel-v10.0.11...revel-v10.0.12) (2025-08-13)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **revel:**
|
|
6
|
+
* **recomm, revel:** Enhance journal record form ([#13733](https://github.com/Rebilly/rebilly/issues/13733)) ([4bb578b](https://github.com/Rebilly/rebilly/commit/4bb578b2ee43e11db5a1d8a661f67fae385d890a))
|
package/dist/revel.mjs
CHANGED
|
@@ -10192,7 +10192,7 @@ const If = (M) => M.reduce(
|
|
|
10192
10192
|
return this.allowEmpty && !this.multiple && this.internalValue.length > 0 && (this.isHovered || this.isOpen);
|
|
10193
10193
|
},
|
|
10194
10194
|
displayAsyncLoadingForPreselectedValue() {
|
|
10195
|
-
return this.computedIsAsync ? this.async.getLastCachedFindResult() === void 0
|
|
10195
|
+
return !this.computedIsAsync || this.modelValue && typeof this.modelValue == "object" && this.computedLabel in this.modelValue ? !1 : this.async.getLastCachedFindResult() === void 0;
|
|
10196
10196
|
}
|
|
10197
10197
|
},
|
|
10198
10198
|
watch: {
|