Merge pull request #1513 from GetStream/fix/edit-message-input-builder

This commit is contained in:
Sahil Kumar
2023-05-01 22:50:35 +05:30
committed by GitHub
2 changed files with 10 additions and 7 deletions
+9 -7
View File
@@ -2,10 +2,13 @@
🐞 Fixed 🐞 Fixed
- [#1502](https://github.com/GetStream/stream-chat-flutter/issues/1502) Fixed `isOnlyEmoji` method Detects Single Hangul - [[#1502]](https://github.com/GetStream/stream-chat-flutter/issues/1502) Fixed `isOnlyEmoji` method Detects Single
Hangul
Consonants as Emoji. Consonants as Emoji.
- [#1505](https://github.com/GetStream/stream-chat-flutter/issues/1505) Fixed Message bubble disappears for Hangul - [[#1505]](https://github.com/GetStream/stream-chat-flutter/issues/1505) Fixed Message bubble disappears for Hangul
Consonants. Consonants.
- [[#1490]](https://github.com/GetStream/stream-chat-flutter/issues/1490) Fixed `editMessageInputBuilder` property not
used in message edit widget.
✅ Added ✅ Added
@@ -29,11 +32,11 @@
🐞 Fixed 🐞 Fixed
- [#1456](https://github.com/GetStream/stream-chat-flutter/issues/1456) Fixed logic for showing that a message was read - [[#1456]](https://github.com/GetStream/stream-chat-flutter/issues/1456) Fixed logic for showing that a message was
using sending indicator. read using sending indicator.
- [#1462](https://github.com/GetStream/stream-chat-flutter/issues/1462) Fixed support for iPad in the share button for - [[#1462]](https://github.com/GetStream/stream-chat-flutter/issues/1462) Fixed support for iPad in the share button for
images. images.
- [#1475](https://github.com/GetStream/stream-chat-flutter/issues/1475) Fixed typo to fix compilation. - [[#1475]](https://github.com/GetStream/stream-chat-flutter/issues/1475) Fixed typo to fix compilation.
✅ Added ✅ Added
@@ -48,7 +51,6 @@
- Updated dependencies to resolvable versions. - Updated dependencies to resolvable versions.
🚀 Improved 🚀 Improved
-
- Improved draw of reaction options. [#1455](https://github.com/GetStream/stream-chat-flutter/pull/1455) - Improved draw of reaction options. [#1455](https://github.com/GetStream/stream-chat-flutter/pull/1455)
@@ -1035,6 +1035,7 @@ class _StreamMessageWidgetState extends State<StreamMessageWidget>
builder: (_) => EditMessageSheet( builder: (_) => EditMessageSheet(
message: widget.message, message: widget.message,
channel: StreamChannel.of(context).channel, channel: StreamChannel.of(context).channel,
editMessageInputBuilder: widget.editMessageInputBuilder,
), ),
); );
}, },