Skip to content

Commit

Permalink
Fix customfield set docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Isengo1989 committed Feb 27, 2024
1 parent 4207c3f commit 081ba5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guides/plugins/plugins/administration/using-custom-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The next step is loading your custom fields. First things first, create a variab
data() {
return {
...
yourCustomFields: null
customFieldSets: null
};
}
```
Expand Down Expand Up @@ -87,6 +87,6 @@ Now you can access your custom fields, e.g. within a `method`. In order to achie
// this will fetch the customFieldSets
this.customFieldSetRepository.search(this.customFieldSetCriteria, Shopware.Context.api)
.then((customFieldSets) => {
this.currencyCustomFields = customFieldSets;
this.customFieldSets = customFieldSets;
});
```
```

0 comments on commit 081ba5a

Please sign in to comment.