diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ef94e5d01..fdb8863962 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ ``` The old import paths are still valid, but deprecated and will be removed in version 9. + +### 📝 Notes * `NcActionRadio` is now expecting String|Number in `v-model` directive (to compare with passed `value`) instead of Boolean. Consider it for migration. diff --git a/src/components/NcActionRadio/NcActionRadio.vue b/src/components/NcActionRadio/NcActionRadio.vue index 1bb4dc97b4..561bcb80da 100644 --- a/src/components/NcActionRadio/NcActionRadio.vue +++ b/src/components/NcActionRadio/NcActionRadio.vue @@ -30,10 +30,10 @@ So that only one of each name set can be selected at the same time. data() { return { radioOptions: [ - { value: 'first', label: 'First choise', disabled: false }, - { value: 'second', label: 'Second choise', disabled: false }, - { value: 'third', label: 'Third choise', disabled: false }, - { value: 'fourth', label: 'Fourth choise (disabled)', disabled: true }, + { value: 'first', label: 'First choice', disabled: false }, + { value: 'second', label: 'Second choice', disabled: false }, + { value: 'third', label: 'Third choice', disabled: false }, + { value: 'fourth', label: 'Fourth choice (disabled)', disabled: true }, ], radioValue: 'first', } @@ -47,7 +47,6 @@ So that only one of each name set can be selected at the same time.