diff --git a/pkgs/webview-ui/app/src/components/MachineListItem.tsx b/pkgs/webview-ui/app/src/components/MachineListItem.tsx index 832a30edf..00871060d 100644 --- a/pkgs/webview-ui/app/src/components/MachineListItem.tsx +++ b/pkgs/webview-ui/app/src/components/MachineListItem.tsx @@ -106,109 +106,104 @@ export const MachineListItem = (props: MachineListItemProps) => { setUpdating(false); }; return ( -
  • -
    -
    - -
    -
    -
    - -

    - {name} -

    -
    -
    - {(d) => d()?.description} -
    -
    - - {(d) => ( - <> - - {(tags) => ( - - - {(tag) => ( - - )} - - - )} - - {d()?.deploy?.targetHost} - - )} - -
    -
    -
    -
    - } + + {name} + + +
    + {(d) => d()?.description}
    +
    + + {(d) => ( + <> + + {(tags) => ( + + + {(tag) => ( + + )} + + + )} + + {d()?.deploy?.targetHost} + + )} + +
    +
    +
    +
    + }> + +
    -
  • + ); };