15 lines
709 B
Diff
15 lines
709 B
Diff
|
diff --git a/pkg/storaged/format-dialog.jsx b/pkg/storaged/format-dialog.jsx
|
||
|
index 05b1096..22db61b 100644
|
||
|
--- a/pkg/storaged/format-dialog.jsx
|
||
|
+++ b/pkg/storaged/format-dialog.jsx
|
||
|
@@ -162,7 +162,8 @@ export function format_dialog(client, path, start, size, enable_dos_extended) {
|
||
|
}
|
||
|
|
||
|
const filesystem_options = [];
|
||
|
- add_fsys("xfs", { value: "xfs", title: "XFS " + _("(recommended)") });
|
||
|
+ add_fsys("btrfs", { value: "btrfs", title: "BTRFS " + _("(recommended)") });
|
||
|
+ add_fsys("xfs", { value: "xfs", title: "XFS" });
|
||
|
add_fsys("ext4", { value: "ext4", title: "EXT4" });
|
||
|
add_fsys("vfat", { value: "vfat", title: "VFAT" });
|
||
|
add_fsys("ntfs", { value: "ntfs", title: "NTFS" });
|