@@ -204,7 +204,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
204
204
205
205
const relationType = mxEvent ?. getRelation ( ) ?. rel_type ;
206
206
const hasARelation = ! ! relationType && relationType !== RelationType . Thread ;
207
- const threadsEnabled = SettingsStore . getValue ( "feature_threadstable " ) ;
207
+ const threadsEnabled = SettingsStore . getValue ( "feature_threadenabled " ) ;
208
208
209
209
if ( ! threadsEnabled && ! Thread . hasServerSideSupport ) {
210
210
// hide the prompt if the user would only have degraded mode
@@ -216,7 +216,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
216
216
e . preventDefault ( ) ;
217
217
e . stopPropagation ( ) ;
218
218
219
- if ( ! SettingsStore . getValue ( "feature_threadstable " ) ) {
219
+ if ( ! SettingsStore . getValue ( "feature_threadenabled " ) ) {
220
220
dis . dispatch ( {
221
221
action : Action . ViewUserSettings ,
222
222
initialTabId : UserTab . Labs ,
@@ -252,7 +252,7 @@ const ReplyInThreadButton = ({ mxEvent }: IReplyInThreadButton) => {
252
252
</ div >
253
253
{ ! hasARelation && (
254
254
< div className = "mx_Tooltip_sub" >
255
- { SettingsStore . getValue ( "feature_threadstable " )
255
+ { SettingsStore . getValue ( "feature_threadenabled " )
256
256
? _t ( "Beta feature" )
257
257
: _t ( "Beta feature. Click to learn more." ) }
258
258
</ div >
@@ -548,7 +548,7 @@ export default class MessageActionBar extends React.PureComponent<IMessageAction
548
548
) ;
549
549
}
550
550
} else if (
551
- SettingsStore . getValue ( "feature_threadstable " ) &&
551
+ SettingsStore . getValue ( "feature_threadenabled " ) &&
552
552
// Show thread icon even for deleted messages, but only within main timeline
553
553
this . context . timelineRenderingType === TimelineRenderingType . Room &&
554
554
this . props . mxEvent . getThread ( )
0 commit comments