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 {
1010
1111export function _configFactory (
1212 initConfig : optionsConfig ,
13- configValue : optionsConfig
13+ configValue ? : optionsConfig
1414) : 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 ;
1818
1919 return {
2020 ...initConfig ,
You can’t perform that action at this time.
0 commit comments