Skip to content

Commit

Permalink
feat(pdc-dashboard): add trefwoorden to internal field
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 committed Mar 3, 2025
1 parent 9947acb commit 6bfddea
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/hot-shrimps-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@frameless/pdc-dashboard": minor
---

Voeg een trefwoordenveld toe aan het interneveld ([GitHub Issue frameless/strapi#1047](https://github.com/frameless/strapi/issues/1047)).
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down Expand Up @@ -101,6 +102,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand All @@ -116,6 +118,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down Expand Up @@ -57,6 +58,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand All @@ -72,6 +74,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down Expand Up @@ -101,6 +102,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand All @@ -116,6 +118,7 @@
"content.uuid",
"content.contentBlock.content",
"content.contentBlock.kennisartikelCategorie",
"content.keywords",
"product"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,39 @@
"searchable": false,
"sortable": false
}
},
"keywords": {
"edit": {
"label": "Trefwoorden",
"description": "Voeg trefwoorden toe voor een betere vindbaarheid. Scheid de trefwoorden met komma's. Bijvoorbeeld: 'trefwoord1, trefwoord2, trefwoord3'",
"placeholder": "",
"visible": true,
"editable": true
},
"list": {
"label": "keywords",
"searchable": true,
"sortable": true
}
}
},
"layouts": {
"list": ["id", "uuid", "contentBlock"],
"list": ["id", "uuid", "contentBlock", "keywords"],
"edit": [
[
{
"name": "uuid",
"size": 6
"name": "contentBlock",
"size": 12
}
],
[
{
"name": "contentBlock",
"size": 12
"name": "keywords",
"size": 6
},
{
"name": "uuid",
"size": 6
}
]
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"trefwoord": {
"edit": {
"label": "Trefwoord",
"description": "Trefwoorden die passen bij de VAC.",
"description": "",
"placeholder": "",
"visible": true,
"editable": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"collectionName": "components_components_internal_fields",
"info": {
"displayName": "Internal field"
"displayName": "Internal field",
"description": ""
},
"options": {},
"attributes": {
Expand All @@ -14,6 +15,9 @@
"repeatable": true,
"component": "components.utrecht-rich-text",
"required": false
},
"keywords": {
"type": "text"
}
}
}

0 comments on commit 6bfddea

Please sign in to comment.