Skip to content

Commit 75166d8

Browse files
v0.3.1-beta.8
1 parent c940d7f commit 75166d8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickblox-react-ui-kit",
3-
"version": "0.3.1-beta.7",
3+
"version": "0.3.1-beta.8",
44
"main": "dist/index-ui.js",
55
"license": "MIT",
66
"dependencies": {

src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,9 +1023,12 @@ const QuickBloxUIKitDesktopLayout: React.FC<
10231023
left: '0',
10241024
width: '100%',
10251025
height: '100%',
1026-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
1026+
backgroundColor: 'rgba(0, 0, 0, 0.05)',
10271027
zIndex: '100',
1028-
display: isLeaving ? 'block' : 'none',
1028+
display:
1029+
isLeaving || (messagesViewModel && messagesViewModel.loading)
1030+
? 'block'
1031+
: 'none',
10291032
}}
10301033
/>
10311034
<DesktopLayout

0 commit comments

Comments
 (0)