diff --git a/ts/components/session/settings/SessionSettingListItem.tsx b/ts/components/session/settings/SessionSettingListItem.tsx index c84c047e5..e7bc66e4a 100644 --- a/ts/components/session/settings/SessionSettingListItem.tsx +++ b/ts/components/session/settings/SessionSettingListItem.tsx @@ -88,7 +88,7 @@ export class SessionSettingListItem extends React.Component { /> )} - {type === SessionSettingType.Slider && title === 'messageTTL' ? ( + {type === SessionSettingType.Slider && title === 'Message TTL' ? (
{

{`${currentSliderValue} Hours`}

- ):type === SessionSettingType.Slider ? ( + ):type === SessionSettingType.Slider && title === "Zoom Factor" ? (
- { this.handleSlider(sliderValue); }} /> +
-

{`% ${currentSliderValue} Zoom Level`}

-
-
+

{`% ${currentSliderValue} Zoom Level`}

+ + ): + null} @@ -144,7 +145,9 @@ export class SessionSettingListItem extends React.Component { sliderValue: value, }); - if(this.props.title !== 'messageTTL' && this.state.sliderValue!==null) { + console.log(this.props.title, 'from here') + + if(this.props.title === 'Zoom Factor' && this.state.sliderValue!==null) { window.setZoomFactor(this.state.sliderValue/100) }