master
alex 2024-01-26 19:54:57 +01:00
parent 54b67686a3
commit f5617c96d0
2 changed files with 3 additions and 7 deletions

View File

@ -30,7 +30,8 @@ export function Loading() {
> >
<ZeitAdler <ZeitAdler
style={{ style={{
width: 280, width: 320,
height: 90,
}} }}
/> />

View File

@ -196,12 +196,7 @@ function Service({
const expandIcon = ({ isActive }) => { const expandIcon = ({ isActive }) => {
if (isRequestingActivities) return <Spin size="small" />; if (isRequestingActivities) return <Spin size="small" />;
return ( return <CaretRightOutlined rotate={isActive ? 90 : 0} />;
<CaretRightOutlined
rotate={isActive ? 90 : 0}
onClick={(e) => e.stopPropagation()}
/>
);
}; };
return ( return (