File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
projects/ngx-loader-indicator-lib/src/lib Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ import {
10
10
11
11
export function _configFactory (
12
12
initConfig : optionsConfig ,
13
- configValue : optionsConfig
13
+ configValue ? : optionsConfig
14
14
) : optionsConfig {
15
- const loaderStyles : Config [ 'loaderStyles' ] | null = configValue . loaderStyles ?? null ;
16
- const imgStyles : Config [ 'imgStyles' ] | null = configValue . imgStyles ?? null ;
17
- const rotate : Config [ 'rotate' ] | null = configValue . rotate ?? null ;
15
+ const loaderStyles : Config [ 'loaderStyles' ] | null = configValue ? .loaderStyles ?? null ;
16
+ const imgStyles : Config [ 'imgStyles' ] | null = configValue ? .imgStyles ?? null ;
17
+ const rotate : Config [ 'rotate' ] | null = configValue ? .rotate ?? null ;
18
18
19
19
return {
20
20
...initConfig ,
You can’t perform that action at this time.
0 commit comments