Skip to content

Commit 45fecd7

Browse files
authored
The ABCheckbox component takes a model-value now, after the nuxt3 upgrade. (baserow#4900)
1 parent ce3d3f8 commit 45fecd7

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "bug",
3+
"message": "Resolved an issue which prevented the application builder table element's boolean fields from being checked correctly.",
4+
"issue_origin": "github",
5+
"issue_number": null,
6+
"domain": "builder",
7+
"bullet_points": [],
8+
"created_at": "2026-03-02"
9+
}

web-frontend/modules/builder/components/elements/components/collectionField/BooleanField.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ABCheckbox :value="value" :read-only="true" />
2+
<ABCheckbox :model-value="value" :read-only="true" />
33
</template>
44

55
<script>

web-frontend/modules/builder/components/theme/InputThemeConfigBlock.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@
283283
v-for="(option, index) in options"
284284
:key="option.value"
285285
:name="option.name"
286-
:value="index === 1"
286+
:model-value="index === 1"
287287
>
288288
{{ option.name }}
289289
</ABCheckbox>

0 commit comments

Comments
 (0)