File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 12
12
"paths" : {
13
13
"/{width}/{height}" : {
14
14
"get" : {
15
+ "tags" : [" The Lorem Ipsum for photos" ],
15
16
"description" : " Return a photo" ,
16
17
"parameters" : [ {
17
18
"name" : " width" ,
18
19
"in" : " path" ,
19
20
"description" : " photo width" ,
20
21
"required" : true ,
22
+ "example" : 100 ,
21
23
"schema" : {
22
24
"minimum" : 100 ,
23
25
"type" : " integer" ,
28
30
"in" : " path" ,
29
31
"description" : " photo height" ,
30
32
"required" : true ,
33
+ "example" : 100 ,
31
34
"schema" : {
32
35
"minimum" : 100 ,
33
36
"type" : " integer" ,
Original file line number Diff line number Diff line change @@ -677,9 +677,9 @@ export default class ApiRequest extends LitElement {
677
677
${ this . responseIsBlob
678
678
? html `
679
679
< div class ="tab-content col " style ="flex:1; display:${ this . activeResponseTab === 'response' ? 'flex' : 'none' } ; ">
680
- < button class ="m-btn " @click ="${ this . downloadResponseBlob } "> DOWNLOAD</ button >
680
+ < button class ="m-btn thin-border mar-top-8 " style =" width:135px " @click ="${ this . downloadResponseBlob } "> DOWNLOAD</ button >
681
681
${ this . responseBlobType === 'view'
682
- ? html `< button class ="m-btn " @click ="${ this . viewResponseBlob } "> VIEW (NEW TAB)</ button > `
682
+ ? html `< button class ="m-btn thin-border mar-top-8 " style =" width:135px " @click ="${ this . viewResponseBlob } "> VIEW (NEW TAB)</ button > `
683
683
: ''
684
684
}
685
685
</ div > `
Original file line number Diff line number Diff line change @@ -20,4 +20,8 @@ a { color: var(--blue); }
20
20
.pad-top-8 {
21
21
padding-top : 8px ;
22
22
}
23
+ .mar-top-8 {
24
+ margin-top : 8px ;
25
+ }
26
+
23
27
` ;
You can’t perform that action at this time.
0 commit comments