#Overwrite Save

6 messages · Page 1 of 1 (latest)

cobalt hill
#

Is that already released? const Config = {
admin: {
components: {
// changed elements to edit
// to better scope custom components
edit: {
SaveButton: CustomSaveButton,
SaveDraftButton: CustomSaveDraftButton,
PublishButton: CustomPublishButton,
PreviewButton: CustomPreviewButton,
},

I am using custom field and would like to overwrite or add additional code on Save.

tropic holly
#

Yes that is released

tropic holly
#

What version are you on?

cobalt hill
#

"payload": "^1.9.5",

cobalt hill
#

I think I put Edit in a wrong place, under fields.

#

This works correctly
const TagsCollection: CollectionConfig = {
slug: TAGS_COLLECTION,
admin: {
useAsTitle: TAG,
group: LINKABLE_GROUP,
disableDuplicate: true,
components: {
edit: {
SaveButton: CustomSaveButton,
},
},
},