@@ -204,7 +204,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
204204
205205 const relationType = mxEvent ?. getRelation ( ) ?. rel_type ;
206206 const hasARelation = ! ! relationType && relationType !== RelationType . Thread ;
207- const threadsEnabled = SettingsStore . getValue ( "feature_threadstable " ) ;
207+ const threadsEnabled = SettingsStore . getValue ( "feature_threadenabled " ) ;
208208
209209 if ( ! threadsEnabled && ! Thread . hasServerSideSupport ) {
210210 // hide the prompt if the user would only have degraded mode
@@ -216,7 +216,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
216216 e . preventDefault ( ) ;
217217 e . stopPropagation ( ) ;
218218
219- if ( ! SettingsStore . getValue ( "feature_threadstable " ) ) {
219+ if ( ! SettingsStore . getValue ( "feature_threadenabled " ) ) {
220220 dis . dispatch ( {
221221 action : Action . ViewUserSettings ,
222222 initialTabId : UserTab . Labs ,
@@ -252,7 +252,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
252252 </ div >
253253 { ! hasARelation && (
254254 < div className = "mx_Tooltip_sub" >
255- { SettingsStore . getValue ( "feature_threadstable " )
255+ { SettingsStore . getValue ( "feature_threadenabled " )
256256 ? _t ( "Beta feature" )
257257 : _t ( "Beta feature. Click to learn more." ) }
258258 </ div >
@@ -548,7 +548,7 @@ export default class MessageActionBar extends React.PureComponent<IMessageAction
548548 ) ;
549549 }
550550 } else if (
551- SettingsStore . getValue ( "feature_threadstable " ) &&
551+ SettingsStore . getValue ( "feature_threadenabled " ) &&
552552 // Show thread icon even for deleted messages, but only within main timeline
553553 this . context . timelineRenderingType === TimelineRenderingType . Room &&
554554 this . props . mxEvent . getThread ( )
0 commit comments