diff --git a/CHANGELOG.md b/CHANGELOG.md index e27ab7f3f6..68c8d0ffbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ - to `import NcButton from '@nextcloud/vue/components/NcButton'` The old import paths are still valid, but deprecated and will be removed in version 9. +* `NcActionRadio` is now expecting String|Number in `v-model` directive (to compare with passed `value`) instead of Boolean. Consider it for migration. + ## [v8.22.0](https://github.com/nextcloud-libraries/nextcloud-vue/tree/v8.22.0) (2024-12-20) [Full Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v8.21.0...v8.22.0) diff --git a/src/components/NcActionRadio/NcActionRadio.vue b/src/components/NcActionRadio/NcActionRadio.vue index 03b0d273b1..1bb4dc97b4 100644 --- a/src/components/NcActionRadio/NcActionRadio.vue +++ b/src/components/NcActionRadio/NcActionRadio.vue @@ -10,27 +10,34 @@ So that only one of each name set can be selected at the same time. ```vue ``` @@ -41,8 +48,8 @@ So that only one of each name set can be selected at the same time.