Skip to content

Commit de9382e

Browse files
committed
Merge branch 'main' into next
2 parents 28893ff + 8bf68a5 commit de9382e

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

docs/developer-docs/latest/developer-resources/database-apis-reference/entity-service/crud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ canonicalUrl: https://docs.strapi.io/developer-docs/latest/developer-resources/d
66

77
# Entity Service API: CRUD operations
88

9-
The [Entity Service API](/developer-docs/latest/developer-resources/database-apis-reference/entity-service-api.md) is built on top of the the [Query Engine API](/developer-docs/latest/developer-resources/database-apis-reference/entity-service-api.md) and uses it to perform CRUD operations on entities.
9+
The [Entity Service API](/developer-docs/latest/developer-resources/database-apis-reference/entity-service-api.md) is built on top of the the [Query Engine API](/developer-docs/latest/developer-resources/database-apis-reference/query-engine-api.md) and uses it to perform CRUD operations on entities.
1010

1111
## findOne()
1212

docs/developer-docs/latest/development/custom-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ register(app) {
199199
:::
200200

201201
::: tip
202-
The `Input` React component receives several props. The [`ColorPickerInput` file](https://github.com/strapi/strapi/blob/features/custom-fields/packages/plugins/color-picker/admin/src/components/ColorPicker/ColorPickerInput/index.js#L10-L21) in the Strapi codebase gives you an example of how they can be used.
202+
The `Input` React component receives several props. The [`ColorPickerInput` file](https://github.com/strapi/strapi/blob/main/packages/plugins/color-picker/admin/src/components/ColorPicker/ColorPickerInput/index.js#L71-L82) in the Strapi codebase gives you an example of how they can be used.
203203
:::
204204

205205

docs/developer-docs/latest/plugins/upload.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,11 @@ In addition to the middleware configuration, you can pass the `sizeLimit`, which
142142
<code-block title="JAVASCRIPT">
143143

144144
```js
145-
// path: ./config/middlewares.js
145+
// path: ./config/plugins.js
146146

147-
export default {
147+
module.exports = {
148148
// ...
149-
{
150-
name: "strapi::body",
149+
upload: {
151150
config: {
152151
providerOptions: {
153152
sizeLimit: 250 * 1024 * 1024 // 256mb in bytes

0 commit comments

Comments
 (0)