Skip to content

Commit

Permalink
initialize sub arrays in trigger base class
Browse files Browse the repository at this point in the history
  • Loading branch information
jwetzell committed May 2, 2024
1 parent d976201 commit b29f1bd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/src/triggers/trigger.js
Expand Up @@ -24,7 +24,10 @@ class Trigger {
/** @type {TriggerObj} */
this.obj = triggerObj;

this.actions = [];
this.loadActions();

this.subTriggers = [];
this.loadSubTriggers();
}

Expand Down

0 comments on commit b29f1bd

Please sign in to comment.