Skip to content

Commit eeee136

Browse files
committed
chore: update properties
Signed-off-by: Leandro Bauret <[email protected]>
1 parent 959550f commit eeee136

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/ApiConsole.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
248248
redirectUri,
249249
eventsTarget,
250250
baseUri,
251-
hideServerSelector,
252-
hideCustomServer,
251+
noServerSelector,
252+
noCustomServer,
253253
noDocs
254254
} = this;
255255
return html`<api-request-panel
@@ -258,14 +258,14 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
258258
?narrow="${narrow}"
259259
?outlined="${outlined}"
260260
?compatibility="${compatibility}"
261+
?noServerSelector="${noServerSelector}"
262+
?noCustomServer="${noCustomServer}"
261263
.noUrlEditor="${noUrlEditor}"
262264
.redirectUri="${redirectUri}"
263265
.scrollTarget="${scrollTarget}"
264266
.allowCustom="${allowCustom}"
265267
.allowDisableParams="${allowDisableParams}"
266268
.allowHideOptional="${allowHideOptional}"
267-
.hideServerSelector="${hideServerSelector}"
268-
.hideCustomServer="${hideCustomServer}"
269269
.baseUri="${baseUri}"
270270
.noDocs="${noDocs}"
271271
.eventsTarget="${eventsTarget}">
@@ -285,7 +285,7 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
285285
narrow,
286286
scrollTarget,
287287
redirectUri,
288-
hideServerSelector,
288+
noServerSelector,
289289
baseUri
290290
} = this;
291291
return html`<api-documentation
@@ -295,11 +295,11 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
295295
?narrow="${narrow}"
296296
?compatibility="${compatibility}"
297297
?outlined="${outlined}"
298+
?noServerSelector="${noServerSelector}"
298299
.inlineMethods="${inlineMethods}"
299300
.noTryIt="${_noTryItValue}"
300301
.baseUri="${baseUri}"
301302
.redirectUri="${redirectUri}"
302-
.hideServerSelector="${hideServerSelector}"
303303
.scrollTarget="${scrollTarget}"
304304
@api-navigation-selection-changed="${this._apiNavigationOcurred}"
305305
>
@@ -563,12 +563,12 @@ export class ApiConsole extends AmfHelperMixin(LitElement) {
563563
* Optional property to set
564564
* If true, the server selector is not rendered
565565
*/
566-
hideServerSelector: { type: Boolean },
566+
noServerSelector: { type: Boolean },
567567
/**
568568
* Optional property to set
569569
* If true, the server selector custom option is not rendered
570570
*/
571-
hideCustomServer: { type: Boolean },
571+
noCustomServer: { type: Boolean },
572572
};
573573
}
574574

0 commit comments

Comments
 (0)