File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
293
293
baseUri,
294
294
selectedServerValue,
295
295
selectedServerType,
296
- noDocumentationServerSelector ,
296
+ _noDocumentationServerSelector ,
297
297
noServerSelector,
298
298
noCustomServer
299
299
} = this ;
@@ -305,7 +305,7 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
305
305
?narrow ="${ narrow } "
306
306
?compatibility ="${ compatibility } "
307
307
?outlined ="${ outlined } "
308
- ?noServerSelector ="${ noServerSelector || noDocumentationServerSelector } "
308
+ ?noServerSelector ="${ noServerSelector || _noDocumentationServerSelector } "
309
309
?noCustomServer ="${ noCustomServer } "
310
310
.inlineMethods ="${ inlineMethods } "
311
311
.noTryIt ="${ _noTryItValue } "
@@ -591,7 +591,7 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
591
591
* Optional property to set
592
592
* If true, forces the api-documentation to hide the server selector
593
593
*/
594
- noDocumentationServerSelector : { type : Boolean } ,
594
+ _noDocumentationServerSelector : { type : Boolean } ,
595
595
/**
596
596
* Optional property to set
597
597
* If true, the server selector custom option is not rendered
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ export class ApiConsoleApp extends ApiConsole {
173
173
return ;
174
174
}
175
175
this . _wideLayout = value ;
176
- this . noDocumentationServerSelector = value ;
176
+ this . _noDocumentationServerSelector = value ;
177
177
this . _updateRenderInlineTyit ( ) ;
178
178
}
179
179
You can’t perform that action at this time.
0 commit comments