From 82d0c0117168a2b5b772eea54bdf1d1ddf75fac1 Mon Sep 17 00:00:00 2001 From: 04cb <0x04cb@gmail.com> Date: Sat, 7 Mar 2026 18:21:03 +0800 Subject: [PATCH] Fix field action payload missing values and name context --- resources/js/components/fieldtypes/Fieldtype.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/js/components/fieldtypes/Fieldtype.vue b/resources/js/components/fieldtypes/Fieldtype.vue index 2004e662b6e..d66cee12b99 100644 --- a/resources/js/components/fieldtypes/Fieldtype.vue +++ b/resources/js/components/fieldtypes/Fieldtype.vue @@ -90,8 +90,10 @@ export default { fieldPathPrefix: this.fieldPathPrefix, handle: this.handle, value: this.value, + values: this.publishContainer.values, + name: this.publishContainer.name, config: this.config, - meta: this.meta, + meta: this.publishContainer.meta, update: this.update, updateMeta: this.updateMeta, isReadOnly: this.isReadOnly,