@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/avp/dashboard-chart/index.js
~packages/ari/avp/dashboard-chart/index.jsModified
+2−6
Index: package/packages/ari/avp/dashboard-chart/index.js
===================================================================
--- package/packages/ari/avp/dashboard-chart/index.js
+++ package/packages/ari/avp/dashboard-chart/index.js
@@ -284,27 +284,23 @@
 var avpDashboardChartAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^[a-zA-Z0-9_\\-.]{1,255}$"),
-  // eslint-disable-line no-useless-escape
-  resourceOwner: AvpDashboardChartAriResourceOwner,
+  resourceOwner: "avp",
   resourceType: AvpDashboardChartAriResourceType,
   resourceIdSlug: "activation/{activationId}/dashboard/{dashboardId}/{chartId}",
   resourceIdSegmentFormats: {
     activationId: /[a-zA-Z0-9\-]+/,
     // eslint-disable-line no-useless-escape
     dashboardId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/,
-    // eslint-disable-line no-useless-escape
     chartId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/avp/dashboard-chart/index.ts
 var AvpDashboardChartAri = class _AvpDashboardChartAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._siteId = opts.cloudId || "", this._activationId = opts.resourceIdSegmentValues.activationId, this._dashboardId = opts.resourceIdSegmentValues.dashboardId, this._chartId = opts.resourceIdSegmentValues.chartId;
+    super(opts), this._siteId = opts.cloudId || "", this._activationId = opts.resourceIdSegmentValues.activationId, this._dashboardId = opts.resourceIdSegmentValues.dashboardId, this._chartId = opts.resourceIdSegmentValues.chartId;
   }
   get siteId() {
     return this._siteId;
   }