|
1 | 1 | <!-- Attributes -->
|
2 | 2 | <ul class="nav nav-tabs">
|
3 | 3 | <li class="nav-item">
|
4 |
| - <a class="nav-link active" data-bs-toggle="tab" data-bs-target="#merged-tab-pane">Merged</a> |
| 4 | + <a class="nav-link disabled" data-bs-toggle="tab" data-bs-target="#merged-tab-pane">Merged</a> |
5 | 5 | </li>
|
6 | 6 | <li class="nav-item">
|
7 |
| - <a class="nav-link" data-bs-toggle="tab" data-bs-target="#default-tab-pane">Default</a> |
| 7 | + <a class="nav-link active" data-bs-toggle="tab" data-bs-target="#default-tab-pane">Default</a> |
8 | 8 | </li>
|
9 | 9 | <li class="nav-item">
|
10 | 10 | <a class="nav-link" data-bs-toggle="tab" data-bs-target="#normal-tab-pane">Normal</a>
|
|
17 | 17 | </li>
|
18 | 18 | </ul>
|
19 | 19 | <div class="tab-content" id="myTabContent">
|
20 |
| - <div class="tab-pane fade show active" id="merged-tab-pane" role="tabpanel"> |
| 20 | + <div class="tab-pane" id="merged-tab-pane" role="tabpanel"> |
21 | 21 | <div class="table-responsive">
|
| 22 | + Merge functionality does not exist |
22 | 23 | <table class="table table-striped">
|
23 | 24 | <tbody>
|
24 |
| - {{ range $index, $value := .node.DefaultAttributes }} |
| 25 | + {{ range $index, $value := .node.NormalAttributes }} |
25 | 26 | <tr>
|
26 |
| - <td><span class="node-attribute-key">$.{{$index}}</span></td> |
| 27 | + <td><span class="node-attribute-key">{{$index}}</span></td> |
27 | 28 | <td><span class="node-attribute-value"><code>{{$value}}</code></span></td>
|
28 | 29 | </tr>
|
29 | 30 | {{ end }}
|
30 | 31 | </tbody>
|
31 | 32 | </table>
|
32 | 33 | </div>
|
33 | 34 | </div>
|
34 |
| - <div class="tab-pane fade show" id="default-tab-pane" role="tabpanel"> |
| 35 | + <div class="tab-pane active" id="default-tab-pane" role="tabpanel"> |
35 | 36 | <table class="table table-striped">
|
36 | 37 | <tbody>
|
37 | 38 | {{ range $index, $value := .node.DefaultAttributes }}
|
38 | 39 | <tr>
|
39 |
| - <td><span class="node-attribute-key">$.{{$index}}</span></td> |
| 40 | + <td><span class="node-attribute-key">{{$index}}</span></td> |
40 | 41 | <td><span class="node-attribute-value"><code>{{$value}}</code></span></td>
|
41 | 42 | </tr>
|
42 | 43 | {{ end }}
|
43 | 44 | </tbody>
|
44 | 45 | </table>
|
45 | 46 | </div>
|
46 |
| - <div class="tab-pane fade" id="normal-tab-pane" role="tabpanel"> |
| 47 | + <div class="tab-pane" id="normal-tab-pane" role="tabpanel"> |
47 | 48 | <table class="table table-striped">
|
48 | 49 | <tbody>
|
49 | 50 | {{ range $index, $value := .node.NormalAttributes }}
|
50 | 51 | <tr>
|
51 |
| - <td><span class="node-attribute-key">$.{{$index}}</span></td> |
| 52 | + <td><span class="node-attribute-key">{{$index}}</span></td> |
52 | 53 | <td><span class="node-attribute-value"><code>{{$value}}</code></span></td>
|
53 | 54 | </tr>
|
54 | 55 | {{ end }}
|
55 | 56 | </tbody>
|
56 | 57 | </table>
|
57 | 58 | </div>
|
58 |
| - <div class="tab-pane fade" id="override-tab-pane" role="tabpanel"> |
| 59 | + <div class="tab-pane" id="override-tab-pane" role="tabpanel"> |
59 | 60 | <table class="table table-striped">
|
60 | 61 | <tbody>
|
61 | 62 | {{ range $index, $value := .node.OverrideAttributes }}
|
62 | 63 | <tr>
|
63 |
| - <td><span class="node-attribute-key">$.{{$index}}</span></td> |
| 64 | + <td><span class="node-attribute-key">{{$index}}</span></td> |
64 | 65 | <td><span class="node-attribute-value"><code>{{$value}}</code></span></td>
|
65 | 66 | </tr>
|
66 | 67 | {{ end }}
|
67 | 68 | </tbody>
|
68 | 69 | </table>
|
69 | 70 | </div>
|
70 |
| - <div class="tab-pane fade" id="automatic-tab-pane" role="tabpanel"> |
| 71 | + <div class="tab-pane" id="automatic-tab-pane" role="tabpanel"> |
71 | 72 | <table class="table table-striped">
|
72 | 73 | <tbody>
|
73 | 74 | {{ range $index, $value := .node.AutomaticAttributes }}
|
74 | 75 | <tr>
|
75 |
| - <td><span class="node-attribute-key">$.{{$index}}</span></td> |
| 76 | + <td><span class="node-attribute-key">{{$index}}</span></td> |
76 | 77 | <td><span class="node-attribute-value"><code>{{$value}}</code></span></td>
|
77 | 78 | </tr>
|
78 | 79 | {{ end }}
|
|
0 commit comments