arsenaltech / nova-tab

Laravel Nova Tabs
74 stars 17 forks source link

Invalid handler for event "actionExecuted" #24

Open NVaissaud opened 5 years ago

NVaissaud commented 5 years ago

Hello,

I got many warnings on my model detail page, one for each fields.

I dont see any actionExecuted method in the component.

Thank you,

actionExecuted
mikaelpopowicz commented 5 years ago

The DetailField component does not include the actionExecuted method. I guess the component was build like the Laravel Nova Detail/Panel component but this one use the BehaveAsPanel mixin which include the actionExecuted method.


    /**
     * Handle the actionExecuted event and pass it up the chain.
     */
    actionExecuted() {
      this.$emit('actionExecuted')
    },
`