File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
npm-packages/dashboard/src/components/billing Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export const FunctionBreakdownMetricDatabaseBandwidth: FunctionBreakdownMetric =
6161 {
6262 name : "database bandwidth" ,
6363 getTotal : ( row ) => row . databaseIngressSize + row . databaseEgressSize ,
64- getValues : ( row ) => [ row . databaseIngressSize , row . databaseEgressSize ] ,
64+ getValues : ( row ) => [ row . databaseEgressSize , row . databaseIngressSize ] ,
6565 quantityType : "storage" ,
6666 categories : Object . values ( BANDWIDTH_CATEGORIES ) ,
6767 } ;
@@ -76,7 +76,7 @@ export const FunctionBreakdownMetricActionCompute: FunctionBreakdownMetric = {
7676export const FunctionBreakdownMetricVectorBandwidth : FunctionBreakdownMetric = {
7777 name : "vector bandwidth" ,
7878 getTotal : ( row ) => row . vectorIngressSize + row . vectorEgressSize ,
79- getValues : ( row ) => [ row . vectorIngressSize , row . vectorEgressSize ] ,
79+ getValues : ( row ) => [ row . vectorEgressSize , row . vectorIngressSize ] ,
8080 quantityType : "storage" ,
8181 categories : Object . values ( BANDWIDTH_CATEGORIES ) ,
8282} ;
You can’t perform that action at this time.
0 commit comments