diff --git a/web/src/components/storage/dasd/DASDTable.tsx b/web/src/components/storage/dasd/DASDTable.tsx index 7b455f03f..90983a273 100644 --- a/web/src/components/storage/dasd/DASDTable.tsx +++ b/web/src/components/storage/dasd/DASDTable.tsx @@ -27,7 +27,10 @@ import { Dropdown, DropdownItem, DropdownList, + List, + ListItem, MenuToggle, + Stack, Text, TextInputGroup, TextInputGroupMain, @@ -82,20 +85,22 @@ const columns = [ { id: "partitionInfo", label: _("Partition Info") }, ]; const DevicesList = ({ devices }) => ( - + ); const FormatNotPossible = ({ devices, onAccept }) => ( - - {_( - "Offline devices must be activated before formatting them. Please, unselect or activate the devices listed below and try it again", - )} - - + + + {_( + "Offline devices must be activated before formatting them. Please, unselect or activate the devices listed below and try it again", + )} + + + {_("Accept")} @@ -104,12 +109,14 @@ const FormatNotPossible = ({ devices, onAccept }) => ( const FormatConfirmation = ({ devices, onCancel, onConfirm }) => ( - - {_( - "This action could destroy any data stored on the devices listed below. Please, confirm that you really want to continue.", - )} - - + + + {_( + "This action could destroy any data stored on the devices listed below. Please, confirm that you really want to continue.", + )} + + +