File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -580,11 +580,13 @@ class _StreamContentInputState extends State<_StreamContentInput> {
580
580
final zulipLocalizations = ZulipLocalizations .of (context);
581
581
final streamName = store.streams[widget.narrow.streamId]? .name
582
582
?? zulipLocalizations.unknownChannelName;
583
+ final topic = TopicName (_topicTextNormalized);
583
584
return _ContentInput (
584
585
narrow: widget.narrow,
585
- destination: TopicNarrow (widget.narrow.streamId, TopicName (_topicTextNormalized) ),
586
+ destination: TopicNarrow (widget.narrow.streamId, topic ),
586
587
controller: widget.controller,
587
- hintText: zulipLocalizations.composeBoxChannelContentHint (streamName, _topicTextNormalized));
588
+ hintText: zulipLocalizations.composeBoxChannelContentHint (
589
+ streamName, topic.displayName));
588
590
}
589
591
}
590
592
You can’t perform that action at this time.
0 commit comments