From b996d632debd657f3871bf482093eba3748ee07e Mon Sep 17 00:00:00 2001 From: olzzon Date: Fri, 27 Mar 2020 07:30:32 +0100 Subject: [PATCH] fix: chan strip refered to channeltype when label was empty --- client/components/Channel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/Channel.tsx b/client/components/Channel.tsx index d007b325..9bb9835c 100644 --- a/client/components/Channel.tsx +++ b/client/components/Channel.tsx @@ -198,7 +198,7 @@ class Channel extends React.Component - {this.props.fader.label != "" ? this.props.fader.label : (window.mixerProtocol.channelTypes[this.props.channelType].channelTypeName + " " + (this.props.channelTypeIndex + 1)) } + {this.props.fader.label != "" ? this.props.fader.label : ("CH " + (this.faderIndex + 1)) } ) }