@sumaris-net/ngx-components 2.4.145 → 2.4.146
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/esm2020/src/app/core/services/model/referential.model.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -16192,7 +16192,7 @@ const StatusIds = {
|
|
|
16192
16192
|
|
|
16193
16193
|
var ReferentialRef_1;
|
|
16194
16194
|
function referentialToString(obj, properties) {
|
|
16195
|
-
return obj && obj.id && joinPropertiesPath(obj, properties || ['label', 'name']) || undefined;
|
|
16195
|
+
return (obj && isNotNil(obj.id) && joinPropertiesPath(obj, properties || ['label', 'name'])) || undefined;
|
|
16196
16196
|
}
|
|
16197
16197
|
function referentialsToString(values, properties, separator) {
|
|
16198
16198
|
return (values || []).map(v => referentialToString(v, properties)).join(separator || ', ');
|