From b51542cd2db2c4b3f3ebf7065b5b778551c76241 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 16 Jul 2020 14:24:46 +0200 Subject: [PATCH] Add valves to bicycle pumps --- Customizations/Layers/BikeServices.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Customizations/Layers/BikeServices.ts b/Customizations/Layers/BikeServices.ts index e79ff33..42c0243 100644 --- a/Customizations/Layers/BikeServices.ts +++ b/Customizations/Layers/BikeServices.ts @@ -11,6 +11,7 @@ import FixedText from "../Questions/FixedText"; import {BikePumpManometer} from "../Questions/BikePumpManometer"; import {ImageCarouselWithUploadConstructor} from "../../UI/Image/ImageCarouselWithUpload"; import {BikePumpOperationalStatus} from "../Questions/BikePumpOperationalStatus"; +import {BikePumpValves} from "../Questions/BikePumpValves"; export default class BikeServices extends LayerDefinition { @@ -49,6 +50,7 @@ export default class BikeServices extends LayerDefinition { new PumpManual().OnlyShowIf(this.pump), new BikePumpManometer().OnlyShowIf(this.pump), + new BikePumpValves().OnlyShowIf(this.pump), new BikePumpOperationalStatus().OnlyShowIf(this.pump), new BikeStationOperator(),