Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
pwizla committed Oct 4, 2022
2 parents 28893ff + 8bf68a5 commit de9382e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ canonicalUrl: https://docs.strapi.io/developer-docs/latest/developer-resources/d

# Entity Service API: CRUD operations

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.
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.

## findOne()

Expand Down
2 changes: 1 addition & 1 deletion docs/developer-docs/latest/development/custom-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ register(app) {
:::

::: tip
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.
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.
:::


Expand Down
7 changes: 3 additions & 4 deletions docs/developer-docs/latest/plugins/upload.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,11 @@ In addition to the middleware configuration, you can pass the `sizeLimit`, which
<code-block title="JAVASCRIPT">

```js
// path: ./config/middlewares.js
// path: ./config/plugins.js

export default {
module.exports = {
// ...
{
name: "strapi::body",
upload: {
config: {
providerOptions: {
sizeLimit: 250 * 1024 * 1024 // 256mb in bytes
Expand Down

0 comments on commit de9382e

Please sign in to comment.