Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,7 @@ export const CloudStorageFileList: React.FC<CloudStorageFileListProps> = ({
{files.length <= 0 && (
<div className="cloud-storage-file-list-empty">
<div className="cloud-storage-file-list-empty-content">
<img
height={160}
src={darkMode ? emptyFileDarkSVG : emptyFileSVG}
width={160}
/>
<img src={darkMode ? emptyFileDarkSVG : emptyFileSVG} width={210} />
<div className="cloud-storage-file-list-empty-text">{t("no-data")}</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const RoomListEmpty: React.FC<RoomListEmptyProps> = ({ isHistory }) => {
<div className="room-list-empty">
<img
alt="empty"
height="160px"
src={
isHistory
? darkMode
Expand All @@ -29,7 +28,7 @@ export const RoomListEmpty: React.FC<RoomListEmptyProps> = ({ isHistory }) => {
? emptyRoomDarkSVG
: emptyRoomSVG
}
width="160px"
width={160}
/>
<span className="room-list-empty-content">
{isHistory ? t("no-record") : t("no-room")}
Expand Down