powerbi-visuals-tools 5.5.0 → 5.5.1
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/Changelog.md +3 -0
- package/lib/features/TotalSubTotal.js +1 -1
- package/package.json +1 -1
package/Changelog.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
This page contains information about changes to the PowerBI Visual Tools (pbiviz).
|
|
4
4
|
|
|
5
|
+
## 5.5.1
|
|
6
|
+
* Fixed subtotal feature check
|
|
7
|
+
|
|
5
8
|
## 5.5.0
|
|
6
9
|
* Changed path for storing certificates. It allows the certificate to be reused regardless of tools version. New path is `({home directory}/pbiviz-certs)`.
|
|
7
10
|
* Windows version lower 10 is deprecated.
|
|
@@ -7,6 +7,6 @@ export default class TotalSubTotal {
|
|
|
7
7
|
static visualFeatureType = VisualFeatureType.Matrix;
|
|
8
8
|
static errorMessage = `${this.featureName} - ${this.documentationLink}`;
|
|
9
9
|
static isSupported(packageInstance) {
|
|
10
|
-
return packageInstance.isCapabilityEnabled({ subtotals:
|
|
10
|
+
return packageInstance.isCapabilityEnabled({ subtotals: {} });
|
|
11
11
|
}
|
|
12
12
|
}
|