diff --git a/client/components/ChanStrip.tsx b/client/components/ChanStrip.tsx index ae434288..a325954d 100644 --- a/client/components/ChanStrip.tsx +++ b/client/components/ChanStrip.tsx @@ -482,25 +482,49 @@ class ChanStrip extends React.PureComponent< {this.inputSelector()} {this.inputGain()}

- {this.threshold()} -

______

- {this.ratio()} -

______

- {this.gainReduction()} + {window.mixerProtocol.channelTypes[0].toMixer + .THRESHOLD ? ( + + {this.threshold()} +

______

+ {this.ratio()} +

______

+ {this.gainReduction()} +
+ ) : null}

- {this.delay()} + {window.mixerProtocol.channelTypes[0].toMixer + .DELAY_TIME ? ( + {this.delay()} + ) : null}
{'EQUALIZER'}
- {this.low()} -

_______

- {this.loMid()} -

_______

- {this.mid()} -

_______

- {this.high()} -

_______

+ {window.mixerProtocol.channelTypes[0].toMixer.LOW ? ( + + {this.low()} +

_______

+
+ ) : null} + {window.mixerProtocol.channelTypes[0].toMixer.LO_MID ? ( + + {this.loMid()} +

_______

+
+ ) : null} + {window.mixerProtocol.channelTypes[0].toMixer.MID ? ( + + {this.mid()} +

_______

+
+ ) : null} + {window.mixerProtocol.channelTypes[0].toMixer.HIGH ? ( + + {this.high()} +

_______

+
+ ) : null}