+
+ {action.label}
+ {action.description && (
+
+ {action.description}
+
+ )}
+ {events.length > 0 && (
+ <>
+
+ Event Triggers
+
+ {events.map((event) => (
+
+ {SUBSCRIPTION_EVENTS[event] || event}
+
+ ))}
+ >
+ )}
+
+
+
+ );
+ });
};
const PluginActionStatus = ({ running, lastResult }) => {