@directus/composables 11.2.10 → 11.2.11
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 +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -954,7 +954,7 @@ function useItems(collection, query) {
|
|
|
954
954
|
let fetchedItems = (await api.get(endpoint.value, {
|
|
955
955
|
params: {
|
|
956
956
|
limit: unref(limit),
|
|
957
|
-
fields: fieldsToFetch,
|
|
957
|
+
fields: fieldsToFetch.join(","),
|
|
958
958
|
...alias ? { alias: unref(alias) } : {},
|
|
959
959
|
sort: unref(sort),
|
|
960
960
|
page: unref(page),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@directus/composables",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.11",
|
|
4
4
|
"description": "Shared Vue composables for Directus use",
|
|
5
5
|
"homepage": "https://directus.io",
|
|
6
6
|
"repository": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"typescript": "5.9.3",
|
|
38
38
|
"vitest": "3.2.4",
|
|
39
39
|
"vue": "3.5.24",
|
|
40
|
-
"@directus/
|
|
40
|
+
"@directus/extensions": "3.0.17",
|
|
41
41
|
"@directus/types": "14.1.0",
|
|
42
|
-
"@directus/
|
|
42
|
+
"@directus/sdk": "21.1.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"vue": "3.5.24"
|