Skip to content

Commit e80f5cb

Browse files
committed
Indentation/new-line fixes
1 parent b20dd6c commit e80f5cb

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ end_of_line = lf
99
insert_final_newline = true
1010
charset = utf-8
1111
indent_style = space
12-
indent_size = 2
12+
indent_size = 2

elements/viewer-nav/viewer-nav.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
55
<template>
66
<section class="filter">
77
<span class="select-field protocol">
8-
<label for="select-domain">Protocol Domain</label>
8+
<label for="select-domain">Protocol Domain</label>
99

10-
<select id="select-domain" on-change="selectDomain">
11-
<option value="-1">Select domain</option>
12-
<template is="dom-repeat" items="{{protocol.domainNames}}" as="domainName">
13-
<option value="{{index}}">{{domainName}}</option>
14-
</template>
15-
</select>
10+
<select id="select-domain" on-change="selectDomain">
11+
<option value="-1">Select domain</option>
12+
<template is="dom-repeat" items="{{protocol.domainNames}}" as="domainName">
13+
<option value="{{index}}">{{domainName}}</option>
14+
</template>
15+
</select>
1616
</span>
1717

1818
<span class="select-field method">
1919
<label for="select-method">Method</label>
20+
2021
<select id="select-method" on-change="selectMethod">
2122
<option value="-1">Show all methods</option>
2223
<template is="dom-repeat" items="{{selectedDomain.methodNames}}" as="methodName">
@@ -27,6 +28,7 @@
2728

2829
<span class="select-field events">
2930
<label for="select-events">Events</label>
31+
3032
<select id="select-events" on-change="selectEvent">
3133
<option value="-1">Show all events</option>
3234
<template is="dom-repeat" items="{{selectedDomain.eventNames}}" as="eventName">

0 commit comments

Comments
 (0)