Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions web/package/agama-web-ui.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Mar 16 10:53:53 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>

- Prevent error when displaying reused LVM VGs (related to
gh#agama-project/agama#3210, jsc#PED-15104, bsc#1254718 and
gh#agama-project/agama#3171).

-------------------------------------------------------------------
Fri Mar 13 15:54:03 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>

Expand Down
1 change: 1 addition & 0 deletions web/src/model/storage/devices-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export default class DevicesManager {
const stagingDevice = this.stagingDevice(device.sid);

if (!systemDevice || !stagingDevice) return 0;
if (!systemDevice.block) return 0;

const amount = systemDevice.block.size - stagingDevice.block.size;
return amount > 0 ? amount : 0;
Expand Down
Loading