fleetmap-reports 2.0.63 → 2.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/speeding-report.js
CHANGED
|
@@ -322,9 +322,8 @@ let countError = 0
|
|
|
322
322
|
let lastSuccessDuration
|
|
323
323
|
async function invokeValhalla (route, i, chunk, country, threshold, results, retry = 3) {
|
|
324
324
|
const slice = route.slice(i, i + chunk)
|
|
325
|
-
|
|
325
|
+
const url = 'http://valhalla.pinme.io:8002/trace_attributes'
|
|
326
326
|
try {
|
|
327
|
-
url = 'http://valhalla.pinme.io:8002/trace_attributes'
|
|
328
327
|
const now = new Date()
|
|
329
328
|
const {
|
|
330
329
|
// eslint-disable-next-line camelcase
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
<mj-image :src="url + '/' + logo" width="256px"/>
|
|
7
7
|
<mj-text>
|
|
8
8
|
<span style="font-size:18px;font-weight: bold">{{ translations.titleSpeedingReport }}</span>
|
|
9
|
+
<br/>
|
|
10
|
+
<span>{{ reportData.devices && reportData.devices.lenght }} {{ translations.vehicle }}s</span>
|
|
9
11
|
</mj-text>
|
|
10
12
|
</mj-column>
|
|
11
13
|
</mj-section>
|