Skip to content

Commit 90c8a73

Browse files
authoredOct 8, 2021
fix: rename request snippets configuration props (#7535)
Closes #7534
1 parent 491d641 commit 90c8a73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/core/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default function SwaggerUI(opts) {
6969
},
7070
},
7171
defaultExpanded: true,
72-
languagesMask: null, // e.g. only show curl bash = ["curl_bash"]
72+
languages: null, // e.g. only show curl bash = ["curl_bash"]
7373
},
7474
supportedSubmitMethods: [
7575
"get",

‎src/core/plugins/request-snippets/selectors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const getGenerators = createSelector(
1010
.get("languages")
1111
const generators = state
1212
.get("generators", Map())
13-
if(!languageKeys) {
13+
if(!languageKeys || languageKeys.isEmpty()) {
1414
return generators
1515
}
1616
return generators

0 commit comments

Comments
 (0)
Please sign in to comment.