feat: display notifications above modals - #3200
Merged
Merged
Conversation
|
Size Change: +1.78 kB (+0.27%) Total Size: 654 kB π¦ View Changed
βΉοΈ View Unchanged
|
oliverlaz
approved these changes
Jun 3, 2026
Codecov Reportβ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3200 +/- ##
==========================================
+ Coverage 83.70% 83.81% +0.11%
==========================================
Files 435 438 +3
Lines 13130 13189 +59
Branches 4252 4273 +21
==========================================
+ Hits 10990 11054 +64
+ Misses 2140 2135 -5 β View full report in Codecov by Sentry. π New features to boost your workflow:
|
github-actions Bot
pushed a commit
that referenced
this pull request
Jun 5, 2026
## [14.4.0](v14.3.0...v14.4.0) (2026-06-05) ### Bug Fixes * **compat:** restore React 17/18 compatibility in certain components ([#3197](#3197)) ([b513b69](b513b69)) * general performance and bug fixes ([#3201](#3201)) ([57c5795](57c5795)) * **interop:** unwrap CJS default exports (react-player, @emoji-mart/react) ([#3199](#3199)) ([4cddb02](4cddb02)) * maintain topmost modal non-inert ([#3206](#3206)) ([7ad98fa](7ad98fa)) ### Features * allow to stack modals on top of each other ([#3203](#3203)) ([4c934ae](4c934ae)) * display notifications above modals ([#3200](#3200)) ([0433090](0433090)) * **Reactions:** send emoji_code with reactions for push notification rendering ([#3209](#3209)) ([2faa620](2faa620)) ### Performance Improvements * **Message:** hoist regex compilation in message text rendering ([#3202](#3202)) ([8c018a4](8c018a4)) * **VideoPlayer:** lazy-load react-player to keep it out of the main bundle ([#3204](#3204)) ([18dc966](18dc966))
|
π This PR is included in version 14.4.0 π The release is available on: Your semantic-release bot π¦π |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
π― Goal
ChannelDetails modal will allow to perform HTTP requests, that can result in error response (or success) and we will need to display notifications on top of the modal without closing it. The following PR allows to do that and prevent displaying notifications behind modal overlay of modal. All the notifications are routed to the
'modal'panel, when modal is open and are not displayed in the original target panel (e.g. 'channel'), after the modal is closed.