fixing airflow measurment types using the wrong enum

This commit is contained in:
csawatzky 2026-02-12 15:00:57 -06:00
parent 5ebbd01c3a
commit edf865752d

View file

@ -33,13 +33,13 @@ export function Airflow(subtype: number = 0): ComponentTypeExtension {
let measurementTypes = [
{
measurementType: quack.MeasurementType.MEASUREMENT_TYPE_PPM,
measurementType: quack.MeasurementType.MEASUREMENT_TYPE_CFM,
label: cfm.label(),
colour: cfm.colour(),
graphType: cfm.graph()
} as ComponentMeasurement,
{
measurementType: quack.MeasurementType.MEASUREMENT_TYPE_VOLTAGE,
measurementType: quack.MeasurementType.MEASUREMENT_TYPE_SPEED,
label: velocity.label(),
colour: velocity.colour(),
graphType: velocity.graph()