File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 4
4
/* eslint-disable no-param-reassign */
5
5
/* eslint-disable class-methods-use-this */
6
6
import { html , LitElement } from 'lit-element' ;
7
- import { AmfHelperMixin } from '@api-components/amf-helper-mixin/amf-helper-mixin.js ' ;
7
+ import { AmfHelperMixin } from '@api-components/amf-helper-mixin' ;
8
8
import markdownStyles from '@advanced-rest-client/markdown-styles/markdown-styles.js' ;
9
9
import httpMethodStyles from '@api-components/http-method-label/http-method-label-common-styles.js' ;
10
10
import '@advanced-rest-client/arc-icons/arc-icon.js' ;
@@ -956,16 +956,15 @@ export class ApiEndpointDocumentationElement extends AmfHelperMixin(LitElement)
956
956
if ( this . inlineMethods ) {
957
957
return '' ;
958
958
}
959
- const { endpointName } = this ;
960
959
return html `
961
- < section class ="url-area " ?extra-margin =" ${ ! endpointName } " >
960
+ < section class ="url-area ">
962
961
< api-url
963
962
.amf ="${ this . amf } "
964
963
.server ="${ this . server } "
965
964
.endpoint ="${ this . endpoint } "
966
965
.apiVersion ="${ this . apiVersion } "
967
966
.baseUri ="${ this . baseUri } "
968
- @onchange ="${ this . _handleUrlChange } "
967
+ @change ="${ this . _handleUrlChange } "
969
968
> </ api-url >
970
969
</ section > ` ;
971
970
}
You can’t perform that action at this time.
0 commit comments