Merge pull request #463 from IBCornelsen/UMBE

.
This commit is contained in:
UMBENOMENA
2025-03-21 13:01:35 +01:00
committed by GitHub
5 changed files with 5 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
import HelpLabel from "#components/labels/HelpLabel.svelte";
import Inputlabel from "#components/labels/InputLabel.svelte";
import { auditHeizungGebaeudeBaujahr } from "../Verbrauchsausweis/audits/HeizungGebaeudeBaujahr.js";
import { addNotification, deleteNotification } from "#components/Notifications/shared.js";
import TagInput from "../TagInput.svelte";

View File

@@ -2,6 +2,7 @@
import HelpLabel from "#components/labels/HelpLabel.svelte";
import Inputlabel from "#components/labels/InputLabel.svelte";
import ZipSearch from "#components/PlzSuche.svelte";
import { Enums } from "#lib/client/prisma.js";
import { AufnahmeClient, ObjektClient } from "./types.js";

View File

@@ -1,5 +1,6 @@
<script lang="ts">
import HelpLabel from "#components/labels/HelpLabel.svelte";
import Inputlabel from "#components/labels/InputLabel.svelte";
import { Enums } from "#lib/client/prisma.js";

View File

@@ -6,6 +6,7 @@
export let aufnahme: AufnahmeClient;
</script>
<div
id="lueftungundleerstand"
class="bereich-box grid

View File

@@ -110,6 +110,7 @@
// }
}
const arrayRange = (start: number, stop: number, step: number) =>
Array.from(
{ length: (stop - start) / step + 1 },