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,789 changes: 7,789 additions & 0 deletions backend/templates/inspections-compliance.json

Large diffs are not rendered by default.

Binary file added backend/templates/inspections-compliance.zip
Binary file not shown.
10,960 changes: 10,960 additions & 0 deletions backend/templates/intake-qualification.json

Large diffs are not rendered by default.

Binary file added backend/templates/intake-qualification.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "bug",
"message": "Resolved an issue which prevented the application builder table element's boolean fields from being checked correctly.",
"issue_origin": "github",
"issue_number": null,
"domain": "builder",
"bullet_points": [],
"created_at": "2026-03-02"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<ABCheckbox :value="value" :read-only="true" />
<ABCheckbox :model-value="value" :read-only="true" />
</template>

<script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
v-for="(option, index) in options"
:key="option.value"
:name="option.name"
:value="index === 1"
:model-value="index === 1"
>
{{ option.name }}
</ABCheckbox>
Expand Down
Loading