terrier-engine 4.67.4 → 4.67.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "files": [
5
5
  "*"
6
6
  ],
7
- "version": "4.67.4",
7
+ "version": "4.67.6",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Terrier-Tech/terrier-engine"
@@ -98,7 +98,7 @@ export default abstract class ContentPart<TState> extends TerrierPart<TState> {
98
98
  * @param name
99
99
  */
100
100
  getNamedAction(name: string): Action | undefined {
101
- return this._namedActions[name].action
101
+ return this._namedActions[name]?.action
102
102
  }
103
103
 
104
104
  /**