Skip to content

Commit 47ba703

Browse files
authored
fix(angular): add missing 'compareWith' input to standalone ion-radio-group (#29870)
Issue number: resolves #29826 --------- ## What is the current behavior? When using `compareWith` on `ion-radio-group` in Ionic Angular Standalone the following error is thrown: ``` NG8002: Can't bind to 'compareWith' since it isn't a known property of 'ion-radio-group'. ``` ## What is the new behavior? - `compareWith` on `ion-radio-group` in Angular Standalone is available ## Does this introduce a breaking change? - [ ] Yes - [x] No
1 parent 7294e96 commit 47ba703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular/standalone/src/directives/radio-group.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { defineCustomElement } from '@ionic/core/components/ion-radio-group.js';
1616

1717
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
1818

19-
const RADIO_GROUP_INPUTS = ['allowEmptySelection', 'name', 'value'];
19+
const RADIO_GROUP_INPUTS = ['allowEmptySelection', 'compareWith', 'name', 'value'];
2020

2121
/**
2222
* Pulling the provider into an object and using PURE works

0 commit comments

Comments
 (0)