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 Feb 21, 2024
1 parent f613492 commit 5dd2102
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 @@ -87,7 +87,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 Down Expand Up @@ -116,7 +115,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 5dd2102

Please sign in to comment.