@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/rovo/custom-action/index.js
~packages/ari/rovo/custom-action/index.jsModified
+3−1
Index: package/packages/ari/rovo/custom-action/index.js
===================================================================
--- package/packages/ari/rovo/custom-action/index.js
+++ package/packages/ari/rovo/custom-action/index.js
@@ -284,8 +284,9 @@
 var rovoCustomActionAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: RovoCustomActionAriResourceOwner,
   resourceType: RovoCustomActionAriResourceType,
   resourceIdSlug: "activation/{activationId}/{customActionId}",
   resourceIdSegmentFormats: {
@@ -298,9 +299,10 @@
 
 // src/rovo/custom-action/index.ts
 var RovoCustomActionAri = class _RovoCustomActionAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._customActionId = opts.resourceIdSegmentValues.customActionId;
+    super(opts);
+    this._activationId = opts.resourceIdSegmentValues.activationId, this._customActionId = opts.resourceIdSegmentValues.customActionId;
   }
   get activationId() {
     return this._activationId;
   }