Merge branch 'gridstack' of https://github.com/manuel-rw/homarr into gridstack

This commit is contained in:
Manuel Ruwe
2022-12-11 15:04:50 +01:00
19 changed files with 475 additions and 422 deletions

View File

@@ -7,6 +7,7 @@ import { useEditModeStore } from '../../Views/useEditModeStore';
import { HomarrCardWrapper } from '../HomarrCardWrapper';
import { BaseTileProps } from '../type';
import { ServiceMenu } from './ServiceMenu';
import { ServicePing } from './ServicePing';
interface ServiceTileProps extends BaseTileProps {
service: ServiceType;
@@ -59,7 +60,7 @@ export const ServiceTile = ({ className, service }: ServiceTileProps) => {
{inner}
</UnstyledButton>
)}
{/*<ServicePing service={service} />*/}
<ServicePing service={service} />
</HomarrCardWrapper>
);
};