web/admin: fix @change handler for ak-radio elements (#7348)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
		@ -114,8 +114,8 @@ export class ApplicationWizardAuthenticationByOauth extends BaseProviderPanel {
 | 
			
		||||
                        label=${msg("Client type")}
 | 
			
		||||
                        .value=${provider?.clientType}
 | 
			
		||||
                        required
 | 
			
		||||
                        @change=${(ev: CustomEvent<ClientTypeEnum>) => {
 | 
			
		||||
                            this.showClientSecret = ev.detail !== ClientTypeEnum.Public;
 | 
			
		||||
                        @change=${(ev: CustomEvent<{ value: ClientTypeEnum }>) => {
 | 
			
		||||
                            this.showClientSecret = ev.detail.value !== ClientTypeEnum.Public;
 | 
			
		||||
                        }}
 | 
			
		||||
                        .options=${clientTypeOptions}
 | 
			
		||||
                    >
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user