eservices-core 1.0.441 → 1.0.443
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.443
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -2936,7 +2936,7 @@ function useListRead(list, readParams) {
|
|
|
2936
2936
|
offset = 0;
|
|
2937
2937
|
hashParams = newHash;
|
|
2938
2938
|
}
|
|
2939
|
-
if (readParams
|
|
2939
|
+
if ('limit' in readParams)
|
|
2940
2940
|
options.limit = readParams.limit;
|
|
2941
2941
|
if (readParams.offset)
|
|
2942
2942
|
options.offset = readParams.offset === undefined ? offset : readParams.offset;
|
|
@@ -3132,7 +3132,7 @@ var script$m = /*#__PURE__*/ vue.defineComponent({
|
|
|
3132
3132
|
/**
|
|
3133
3133
|
* @description Если в новых данных отсутвует RowKey
|
|
3134
3134
|
* */
|
|
3135
|
-
const isNew = vue.computed(() => !props.values
|
|
3135
|
+
const isNew = vue.computed(() => !props.values && !List$1.getKey(props.values));
|
|
3136
3136
|
return (_ctx, _cache) => {
|
|
3137
3137
|
return (vue.openBlock(), vue.createElementBlock("tr", _hoisted_1$h, [
|
|
3138
3138
|
vue.createElementVNode("td", { colspan: __props.rowLength }, [
|