Commit a5819f8 1 parent 2650602 commit a5819f8 Copy full SHA for a5819f8
File tree 4 files changed +16
-4
lines changed
4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,17 @@ export const Display = {
89
89
} ,
90
90
url : '#' ,
91
91
} ,
92
+ {
93
+ identifier : 'eHerkenning' ,
94
+ label : 'eHerkenning' ,
95
+ logo : {
96
+ appearance : 'light' ,
97
+ href : 'https://www.eherkenning.nl/' ,
98
+ title : 'eHerkenning' ,
99
+ imageSrc : './eherkenning.png' ,
100
+ } ,
101
+ url : '#' ,
102
+ } ,
92
103
] ,
93
104
} ,
94
105
} ;
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const LoginOptionsDisplay = ({
36
36
</ >
37
37
) }
38
38
39
- { cosignLoginOptions && cosignLoginOptions . length > 0 && (
39
+ { cosignLoginOptions ? .length > 0 && (
40
40
< div className = { getBEMClassName ( 'login-options__cosign' ) } >
41
41
< h2 className = { getBEMClassName ( 'login-options__caption' ) } >
42
42
< FormattedMessage
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ import LoginOptionsDisplay from './LoginOptionsDisplay';
12
12
const LoginOptions = ( { form, onFormStart} ) => {
13
13
const config = useContext ( ConfigContext ) ;
14
14
15
- let loginAsYourselfOptions = [ ] ;
16
- let loginAsGemachtigdeOptions = [ ] ;
17
- let cosignLoginOptions = [ ] ;
15
+ const loginAsYourselfOptions = [ ] ;
16
+ const loginAsGemachtigdeOptions = [ ] ;
17
+ const cosignLoginOptions = [ ] ;
18
18
19
19
form . loginOptions . forEach ( option => {
20
20
let readyOption = { ...option } ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const FormattedLoginOption = PropTypes.shape({
8
8
title : PropTypes . string . isRequired ,
9
9
imageSrc : PropTypes . string . isRequired ,
10
10
href : PropTypes . string ,
11
+ appearance : PropTypes . bool ,
11
12
} ) ,
12
13
isForGemachtigde : PropTypes . bool ,
13
14
} ) ;
You can’t perform that action at this time.
0 commit comments