rooms-page-calendar-ics-room-name-fix (#659)

Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
This commit is contained in:
Igor Monadical
2025-09-17 20:02:17 -04:00
committed by GitHub
parent 6566e04300
commit 2b723da08b
2 changed files with 29 additions and 27 deletions

View File

@@ -624,7 +624,7 @@ export default function RoomsList() {
<Tabs.Content value="calendar" pt={6}>
<ICSSettings
roomName={parseNonEmptyString(room.name)}
roomName={room.name ? parseNonEmptyString(room.name) : null}
icsUrl={room.icsUrl}
icsEnabled={room.icsEnabled}
icsFetchInterval={room.icsFetchInterval}