diff --git a/src/lib/ldb/staff/table/table-generator.svelte b/src/lib/ldb/staff/table/table-generator.svelte index 0e13b06..3371ce1 100644 --- a/src/lib/ldb/staff/table/table-generator.svelte +++ b/src/lib/ldb/staff/table/table-generator.svelte @@ -8,8 +8,8 @@ export let click: Function; interface locationObject { - location: string, - via?: string, + location: string; + via?: string; } function detail(event: any, rid: string, uid: string, tid: string) { @@ -23,7 +23,7 @@ tiplocs.push(location.tiploc); } let locationObj: locationObject = { - location: tiplocs.join(' & '), + location: tiplocs.join(' & ') }; if (locations[0]['via']) { locationObj.via = locations[0]['via']; @@ -134,9 +134,13 @@