mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
27 lines
823 B
Diff
27 lines
823 B
Diff
From 51cc5b9086927db3a9c3aa21e59a6f0d7e8fc761 Mon Sep 17 00:00:00 2001
|
|
From: su-ex <codeworks@supercable.onl>
|
|
Date: Tue, 7 Sep 2021 19:41:52 +0200
|
|
Subject: No damn avatar background in room list
|
|
|
|
---
|
|
src/components/structures/BackdropPanel.tsx | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/components/structures/BackdropPanel.tsx b/src/components/structures/BackdropPanel.tsx
|
|
index f3a44521fa..396601ba6e 100644
|
|
--- a/src/components/structures/BackdropPanel.tsx
|
|
+++ b/src/components/structures/BackdropPanel.tsx
|
|
@@ -13,6 +13,9 @@ interface IProps {
|
|
}
|
|
|
|
export const BackdropPanel: React.FC<IProps> = ({ backgroundImage, blurMultiplier }) => {
|
|
+ // SC: no damn avatar background in room list
|
|
+ return null;
|
|
+
|
|
if (!backgroundImage) return null;
|
|
|
|
const styles: CSSProperties = {};
|
|
--
|
|
2.48.1
|
|
|