Commit 0e39fb46 authored by Romain Courteaud's avatar Romain Courteaud Committed by Jérome Perrin

Publish build version.

parent f9ce402b
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<td>Daily Attainment</td> <td>Daily Attainment</td>
<td> <td>
{{#interval_list}} {{#interval_list}}
{{interval}}<i class="fa {{icon}}"/><br/> <i class="ui-link ui-btn ui-icon-{{icon}} ui-btn-inline ui-cornel-all ui-btn-icon-right">{{interval}}</i><br/>
{{/interval_list}} {{/interval_list}}
</td> </td>
</tr> </tr>
......
...@@ -36,12 +36,12 @@ ...@@ -36,12 +36,12 @@
if (interval_value > throughputTarget) { if (interval_value > throughputTarget) {
interval_list.push({ interval_list.push({
interval: interval_value, interval: interval_value,
icon: "fa-smile-o" icon: "check"
}); });
} else { } else {
interval_list.push({ interval_list.push({
interval: interval_value, interval: interval_value,
icon: "fa-frown-o" icon: "delete"
}); });
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment