mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix: fix event selection event naming (#6753)
This commit is contained in:
parent
6d810d12ea
commit
ec926cdeac
|
@ -385,9 +385,9 @@ export default defineComponent({
|
||||||
this.unchanged = false;
|
this.unchanged = false;
|
||||||
this.testMessageSent = false;
|
this.testMessageSent = false;
|
||||||
const newValue: NodeParameterValue = parameterData.value as string | number;
|
const newValue: NodeParameterValue = parameterData.value as string | number;
|
||||||
const parameterPath = parameterData.name.startsWith('parameters.')
|
const parameterPath = parameterData.name?.startsWith('parameters.')
|
||||||
? parameterData.name.split('.').slice(1).join('.')
|
? parameterData.name.split('.').slice(1).join('.')
|
||||||
: parameterData.name;
|
: parameterData.name || '';
|
||||||
|
|
||||||
const nodeParameters = deepCopy(this.nodeParameters);
|
const nodeParameters = deepCopy(this.nodeParameters);
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onInput() {
|
onInput() {
|
||||||
this.$emit(onUpdate);
|
this.$emit('input');
|
||||||
},
|
},
|
||||||
onCheckboxChecked(eventName: string, checked: boolean) {
|
onCheckboxChecked(eventName: string, checked: boolean) {
|
||||||
this.logStreamingStore.setSelectedInGroup(this.destinationId, eventName, checked);
|
this.logStreamingStore.setSelectedInGroup(this.destinationId, eventName, checked);
|
||||||
|
|
Loading…
Reference in a new issue