@@ -2,25 +2,25 @@ import { Button, Card, FlexBox, Label, Title } from '@ui5/webcomponents-react';
22import '@ui5/webcomponents-fiori/dist/illustrations/NoData.js' ;
33import '@ui5/webcomponents-fiori/dist/illustrations/EmptyList.js' ;
44import '@ui5/webcomponents-icons/dist/delete' ;
5- import ConnectButton from './ConnectButton.tsx' ;
6- import { ListWorkspacesType } from '../../lib/api/types/crate/listWorkspaces.ts' ;
5+ import ConnectButton from '.. /ConnectButton.tsx' ;
6+ import { ListWorkspacesType } from '../../../ lib/api/types/crate/listWorkspaces.ts' ;
77import {
88 ListControlPlanesType ,
99 ReadyStatus ,
10- } from '../../lib/api/types/crate/controlPlanes.ts' ;
10+ } from '../../../ lib/api/types/crate/controlPlanes.ts' ;
1111import TitleLevel from '@ui5/webcomponents/dist/types/TitleLevel.js' ;
1212import ButtonDesign from '@ui5/webcomponents/dist/types/ButtonDesign.js' ;
1313import { useState } from 'react' ;
14- import { useApiResourceMutation } from '../../lib/api/useApiResource.ts' ;
14+ import { useApiResourceMutation } from '../../../ lib/api/useApiResource.ts' ;
1515import {
1616 DeleteMCPResource ,
1717 DeleteMCPType ,
1818 PatchMCPResourceForDeletion ,
1919 PatchMCPResourceForDeletionBody ,
20- } from '../../lib/api/types/crate/deleteMCP.ts' ;
21- import { DeleteConfirmationDialog } from '../Dialogs/DeleteConfirmationDialog.tsx' ;
22- import MCPHealthPopoverButton from '../ControlPlane/MCPHealthPopoverButton.tsx' ;
23- import classes from './ControlPlaneCard.module.css' ;
20+ } from '../../../ lib/api/types/crate/deleteMCP.ts' ;
21+ import { DeleteConfirmationDialog } from '../../ Dialogs/DeleteConfirmationDialog.tsx' ;
22+ import MCPHealthPopoverButton from '../../ ControlPlane/MCPHealthPopoverButton.tsx' ;
23+ import styles from './ControlPlaneCard.module.css' ;
2424
2525interface Props {
2626 controlPlane : ListControlPlanesType ;
@@ -53,8 +53,8 @@ export function ControlPlaneCard({
5353
5454 return (
5555 < >
56- < Card key = { `${ name } --${ namespace } ` } className = { classes . card } >
57- < div className = { classes . container } >
56+ < Card key = { `${ name } --${ namespace } ` } className = { styles . card } >
57+ < div className = { styles . container } >
5858 < FlexBox direction = "Column" >
5959 < FlexBox direction = "Row" justifyContent = "SpaceBetween" >
6060 < FlexBox direction = "Column" >
@@ -78,7 +78,7 @@ export function ControlPlaneCard({
7878 direction = "Row"
7979 justifyContent = "SpaceBetween"
8080 alignItems = "Center"
81- className = { classes . row }
81+ className = { styles . row }
8282 >
8383 < MCPHealthPopoverButton mcpStatus = { controlPlane . status } />
8484 < ConnectButton
0 commit comments