@trii/components 2.0.28 → 2.0.29
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -15201,7 +15201,7 @@ async function fetchLabels({ baseUrl, spaceId, signal }) {
|
|
|
15201
15201
|
}
|
|
15202
15202
|
async function fetchContact({ baseUrl, spaceId, contactId, signal }) {
|
|
15203
15203
|
const urls = getApiUrls(baseUrl, spaceId);
|
|
15204
|
-
const url = joinUrl(urls.CONTACTS,
|
|
15204
|
+
const url = joinUrl(urls.CONTACTS, `/contacts/${encodeURIComponent(contactId)}`);
|
|
15205
15205
|
return requestJson({ url, signal });
|
|
15206
15206
|
}
|
|
15207
15207
|
async function updateEntity({ baseUrl, spaceId, entityType, entityId, body, signal }) {
|