Skip to content

Commit 33555e9

Browse files
authored
refactor(config): fix naming of system options (#9917)
1 parent e998bed commit 33555e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ function SwaggerUI(userOptions) {
5454
userOptions,
5555
queryOptions
5656
)
57-
const storeOptions = systemOptionsFactorization(mergedOptions)
57+
const systemOptions = systemOptionsFactorization(mergedOptions)
5858
const InlinePlugin = inlinePluginOptionsFactorization(mergedOptions)
5959

60-
const unboundSystem = new System(storeOptions)
60+
const unboundSystem = new System(systemOptions)
6161
unboundSystem.register([mergedOptions.plugins, InlinePlugin])
6262
const system = unboundSystem.getSystem()
6363

0 commit comments

Comments
 (0)