mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
Fix data time scale and logo file name
This commit is contained in:
parent
ae9e68beb6
commit
f52d77912b
2 changed files with 5 additions and 2 deletions
|
@ -115,7 +115,10 @@ export default DS.RESTSerializer.extend({
|
|||
if (attribute.value) {
|
||||
if ($.isArray(attribute.value)) {
|
||||
attribute.value.forEach(function (value) {
|
||||
property.attributes.values.push(value);
|
||||
// fix for second to millisecond
|
||||
value[0] = +value[0] * 1000;
|
||||
|
||||
property.attributes.values.push(value);
|
||||
});
|
||||
} else {
|
||||
property.attributes.values.push([timestamp, attribute.value]);
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Lab Mashup Visualization
|
||||
</div>
|
||||
<div id="logos">
|
||||
<img src={{"assets/images/eu.svg"}} class="svg-logo" />
|
||||
<img src={{"assets/images/EU.svg"}} class="svg-logo" />
|
||||
<img src={{"assets/images/RWTH.svg"}} class="svg-logo" id="rwth-logo" />
|
||||
<img src={{"assets/images/PoliTo.svg"}} class="svg-logo" />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue