Fixed currentuser.token

It needs ":" at finally of string
This commit is contained in:
RubenPX 2022-04-07 14:24:09 +02:00
parent 184d22ac81
commit 9489a70597
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@
<script>
const table = new simpleDatatables.DataTable("table")
const API_URLS = {
Auth_Token: `Basic ${btoa("{{ current_user.token }}")}`, //
Auth_Token: `Basic ${btoa("{{ current_user.token }}:")}`, //
currentUserID: "{{ current_user.id }}",
lots: "{{ url_for('Lot.main') }}",
devices: "{{ url_for('Device.main') }}",