|
25 | 25 | <tag-input params="{ scope: $component.tagScope, onChange: onTagsChange }"></tag-input>
|
26 | 26 | </div>
|
27 | 27 | <div class="form-group ml-auto">
|
28 |
| - <label for="groupByTag">Group by tag |
| 28 | + <label>Group by tag |
29 | 29 | <div class="switch">
|
30 |
| - <input id="groupByTag" type="checkbox" data-bind="checked: $component.groupByTag"> |
| 30 | + <input type="checkbox" data-bind="checked: $component.groupByTag"> |
31 | 31 | <span class="slider round"></span>
|
32 | 32 | </div>
|
33 | 33 | </label>
|
|
61 | 61 | </div>
|
62 | 62 | <div class="list">
|
63 | 63 | <!-- ko foreach: { data: group.items, as: 'item' } -->
|
64 |
| - <div role="option" class="list-item table-preset-operations" data-bind="activate: $component.selectOperation, css: { 'selected': $component.selectedOperationName() === item.name }"> |
| 64 | + <div role="option" class="list-item table-preset-operations" |
| 65 | + data-bind="activate: $component.selectOperation, css: { 'selected': $component.selectedOperationName() === item.name }"> |
65 | 66 | <div class="http-method" data-bind="attr: { 'data-method': method }"></div>
|
66 |
| - <div data-bind="text: ($component.showUrlPath() ? item.urlTemplate : item.displayName), css: { 'text-truncate': !$component.wrapText(), 'text-wrap': $component.wrapText() }, attr: { title: ($component.showUrlPath() ? item.urlTemplate : item.displayName) }"> |
| 67 | + <div |
| 68 | + data-bind="text: ($component.showUrlPath() ? item.urlTemplate : item.displayName), css: { 'text-truncate': !$component.wrapText(), 'text-wrap': $component.wrapText() }, attr: { title: ($component.showUrlPath() ? item.urlTemplate : item.displayName) }"> |
67 | 69 | </div>
|
68 | 70 | </div>
|
69 | 71 | <!-- /ko -->
|
|
97 | 99 | <div role="option" class="list-item table-preset-operations"
|
98 | 100 | data-bind="activate: $component.selectOperation, css: { 'selected': $component.selectedOperationName() === item.name }">
|
99 | 101 | <div class="http-method" data-bind="attr: { 'data-method': method }"></div>
|
100 |
| - <div data-bind="text: ($component.showUrlPath() ? item.urlTemplate : item.displayName), css: { 'text-truncate': !$component.wrapText(), 'text-wrap': $component.wrapText() }, attr: { title: ($component.showUrlPath() ? item.urlTemplate : item.displayName) }"></div> |
| 102 | + <div |
| 103 | + data-bind="text: ($component.showUrlPath() ? item.urlTemplate : item.displayName), css: { 'text-truncate': !$component.wrapText(), 'text-wrap': $component.wrapText() }, attr: { title: ($component.showUrlPath() ? item.urlTemplate : item.displayName) }"> |
| 104 | + </div> |
101 | 105 | </div>
|
102 | 106 | <!-- /ko -->
|
103 | 107 | </div>
|
|
0 commit comments