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