|
19 | 19 | </div>
|
20 | 20 | <br />
|
21 | 21 | <div id="app">
|
| 22 | + <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{{before}}</span> and |
| 23 | + <span id="after">{{after}}</span> |
| 24 | + </h2> |
| 25 | + <div v-if="data" style="margin: 12px 0;"> |
| 26 | + <div style="display: flex;justify-content: center;"> |
| 27 | + <div class="description-box"> |
| 28 | + <div v-if="data.prev" class="description-arrow"><a v-bind:href="prevLink">←</a></div> |
| 29 | + <div style="padding: 10px;"> |
| 30 | + <span><a v-if="data.a.pr" v-bind:href="prLink(data.a.pr)">#{{data.a.pr}}</a> </span> |
| 31 | + <span v-if="data.a.date">{{formatDate(data.a.date)}}</span> |
| 32 | + (<a v-bind:href="commitLink(data.a.commit)">{{short(data.a)}}</a>) |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + <div v-if="notContinuous" id="not-continuous" title="WARNING! The commits are not continuous.">... |
| 36 | + </div> |
| 37 | + <div class="description-box"> |
| 38 | + <div style="padding: 10px;"> |
| 39 | + <span><a v-if="data.b.pr" v-bind:href="prLink(data.b.pr)">#{{data.b.pr}}</a> </span> |
| 40 | + <span v-if="data.b.date">{{formatDate(data.b.date)}}</span> |
| 41 | + (<a v-bind:href="commitLink(data.b.commit)">{{short(data.b)}}</a>) |
| 42 | + </div> |
| 43 | + <div v-if="data.next" class="description-arrow"><a v-bind:href="nextLink">→</a></div> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + <div style="display: flex; justify-content: center;"> |
| 47 | + <a v-bind:href="compareLink">🔎 compare commits</a> |
| 48 | + </div> |
| 49 | + </div> |
22 | 50 | <fieldset id="settings">
|
23 | 51 | <legend id="search-toggle" class="section-heading">Do another comparison<span
|
24 | 52 | class="toggle-indicator" id="search-toggle-indicator"></span></legend>
|
|
57 | 85 | <a :href="createUrlForMetric(metric[1])">{{ metric[0] }}</a>
|
58 | 86 | </div>
|
59 | 87 | </div>
|
60 |
| - <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{{before}}</span> and |
61 |
| - <span id="after">{{after}}</span> |
62 |
| - </h2> |
63 |
| - <div v-if="data" style="margin: 12px 0;"> |
64 |
| - <div style="display: flex;justify-content: center;"> |
65 |
| - <div class="description-box"> |
66 |
| - <div v-if="data.prev" class="description-arrow"><a v-bind:href="prevLink">←</a></div> |
67 |
| - <div style="padding: 10px;"> |
68 |
| - <span><a v-if="data.a.pr" v-bind:href="prLink(data.a.pr)">#{{data.a.pr}}</a> </span> |
69 |
| - <span v-if="data.a.date">{{formatDate(data.a.date)}}</span> |
70 |
| - (<a v-bind:href="commitLink(data.a.commit)">{{short(data.a)}}</a>) |
71 |
| - </div> |
72 |
| - </div> |
73 |
| - <div v-if="notContinuous" id="not-continuous" title="WARNING! The commits are not continuous.">... |
74 |
| - </div> |
75 |
| - <div class="description-box"> |
76 |
| - <div style="padding: 10px;"> |
77 |
| - <span><a v-if="data.b.pr" v-bind:href="prLink(data.b.pr)">#{{data.b.pr}}</a> </span> |
78 |
| - <span v-if="data.b.date">{{formatDate(data.b.date)}}</span> |
79 |
| - (<a v-bind:href="commitLink(data.b.commit)">{{short(data.b)}}</a>) |
80 |
| - </div> |
81 |
| - <div v-if="data.next" class="description-arrow"><a v-bind:href="nextLink">→</a></div> |
82 |
| - </div> |
83 |
| - </div> |
84 |
| - <div style="display: flex; justify-content: center;"> |
85 |
| - <a v-bind:href="compareLink">🔎 compare commits</a> |
86 |
| - </div> |
87 |
| - </div> |
88 | 88 | <fieldset id="filters" class="collapsible-section">
|
89 | 89 | <legend id="filters-toggle" class="section-heading">Filters<span class="toggle-indicator" id="filters-toggle-indicator"></span>
|
90 | 90 | </legend>
|
|
0 commit comments