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> {
577577 final zulipLocalizations = ZulipLocalizations .of (context);
578578 final streamName = store.streams[widget.narrow.streamId]? .name
579579 ?? zulipLocalizations.unknownChannelName;
580+ final topic = TopicName (widget.controller.topic.textNormalized);
580581 return _ContentInput (
581582 narrow: widget.narrow,
582- destination: TopicNarrow (widget.narrow.streamId,
583- TopicName (widget.controller.topic.textNormalized)),
583+ destination: TopicNarrow (widget.narrow.streamId, topic),
584584 controller: widget.controller,
585- hintText: zulipLocalizations.composeBoxChannelContentHint (streamName,
586- widget.controller. topic.textNormalized ));
585+ hintText: zulipLocalizations.composeBoxChannelContentHint (
586+ streamName, topic.displayName ));
587587 }
588588}
589589
You can’t perform that action at this time.
0 commit comments