feat: Removes register-id in favor of using the room name with register number in duct sizing forms / tables.

This commit is contained in:
2026-01-15 15:18:42 -05:00
parent 4ecd4dba7b
commit 9709eaaf8e
6 changed files with 26 additions and 64 deletions

View File

@@ -7,7 +7,7 @@ struct RectangularSizeForm: HTML, Sendable {
static func id(_ room: DuctSizing.RoomContainer) -> String {
let base = "rectangularSize"
return "\(base)_\(room.registerID.idString)"
return "\(base)_\(room.roomName.idString)"
}
@Environment(ProjectViewValue.$projectID) var projectID