fix widget loading vite config

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K 2025-10-21 11:58:47 +02:00
parent 94ff2d1d7d
commit 0f70e6f706
2 changed files with 2 additions and 2 deletions

View file

@ -105,7 +105,7 @@ export function RoomView({ room, eventId }: { room: Room; eventId?: string }) {
onHangup={() => setCallJoined(false)} onHangup={() => setCallJoined(false)}
/> />
)} )}
<Box grow="Yes" direction="Column" style={{ minWidth: 400 }}> <Box grow="Yes" direction="Column" style={{ width: 350 }}>
<Box grow="Yes" direction="Column"> <Box grow="Yes" direction="Column">
<RoomTimeline <RoomTimeline
key={roomId} key={roomId}

View file

@ -40,7 +40,7 @@ const copyFiles = {
}, },
{ {
src: 'node_modules/@element-hq/element-call-embedded/dist/*', src: 'node_modules/@element-hq/element-call-embedded/dist/*',
dest: './widgets/element-call/', dest: 'widgets/element-call/',
}, },
], ],
}; };