Skip to content

Commit cd2cb83

Browse files
authored
fix(#2626): fix remember-me functionality (#2627)
1 parent 8d0b6c1 commit cd2cb83

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spring-boot-admin-server-ui/src/main/frontend/components/sba-checkbox.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
:checked="modelValue"
66
type="checkbox"
77
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded"
8+
:name="name"
89
@change="$emit('update:modelValue', $event.target.checked)"
910
/>
1011
<label :for="id" class="ml-2 font-medium text-gray-700" v-text="label" />
@@ -14,6 +15,11 @@
1415
<script>
1516
export default {
1617
props: {
18+
name: {
19+
type: String,
20+
required: false,
21+
default: null,
22+
},
1723
modelValue: {
1824
type: Boolean,
1925
required: true,

0 commit comments

Comments
 (0)