Merge pull request #3693 from backstage/unlabeled-df-alerts-bug-fix

Independently release cost insights
This commit is contained in:
brendasukh
2020-12-11 15:16:39 -05:00
committed by GitHub
5 changed files with 11 additions and 8 deletions
@@ -1,5 +0,0 @@
---
'@backstage/plugin-cost-insights': patch
---
fix breakdown sorting
+1
View File
@@ -42,6 +42,7 @@ const
cookiecutter
css
dariddler
dataflow
deadnaming
destructured
dev
+7
View File
@@ -1,5 +1,12 @@
# @backstage/plugin-cost-insights
## 0.5.1
### Patch Changes
- 64c9fd84c: fix breakdown sorting
- Fix bar chart legend label bug for unlabeled dataflow alerts
## 0.5.0
### Minor Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-cost-insights",
"version": "0.5.0",
"version": "0.5.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@ export const UnlabeledDataflowAlertCard = ({
<InfoCard title="Label Dataflow" subheader={subheader}>
<Box className={classes.wrapper}>
<BarChartLegend
costStart={alert.labeledCost}
costEnd={alert.unlabeledCost}
costStart={alert.unlabeledCost}
costEnd={alert.labeledCost}
options={options}
/>
<BarChart resources={resources} options={options} />