Skip to content

Commit

Permalink
WIP - no Unformatted Data, Locked Data
Browse files Browse the repository at this point in the history
  • Loading branch information
mvollmer committed Jan 25, 2024
1 parent 5c026f1 commit 4d8dad7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/storaged/block/create-pages.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export function make_block_page(parent, block, card) {
card = make_filesystem_card(card, block, null, fstab_config);
} else {
card = make_encryption_card(card, block, false);
card = make_locked_encrypted_data_card(card, block);
}
} else {
const is_filesystem = content_block.IdUsage == 'filesystem';
Expand All @@ -109,7 +108,7 @@ export function make_block_page(parent, block, card) {
(content_block.IdUsage == "other" && content_block.IdType == "swap")) {
card = make_swap_card(card, block, content_block);
} else if (client.blocks_available[content_block.path]) {
card = make_unformatted_data_card(card, block, content_block);
// No card for unformatted data
} else {
card = make_unrecognized_data_card(card, block, content_block);
}
Expand Down

0 comments on commit 4d8dad7

Please sign in to comment.