Merge pull request #3693 from backstage/unlabeled-df-alerts-bug-fix
Independently release cost insights
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-cost-insights': patch
|
||||
---
|
||||
|
||||
fix breakdown sorting
|
||||
@@ -42,6 +42,7 @@ const
|
||||
cookiecutter
|
||||
css
|
||||
dariddler
|
||||
dataflow
|
||||
deadnaming
|
||||
destructured
|
||||
dev
|
||||
|
||||
@@ -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,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",
|
||||
|
||||
+2
-2
@@ -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} />
|
||||
|
||||
Reference in New Issue
Block a user