Merge branch 'main' into module/timetracking

This commit is contained in:
2025-08-26 09:07:38 +02:00
23 changed files with 310 additions and 62 deletions

View File

@@ -7,8 +7,6 @@
import TypeSelector from './TypeSelector.svelte';
let error = null;
let companies = {};
let router = useTinyRouter();
@@ -27,7 +25,7 @@
}
if (company_id) {
for (let comp of Object.keys(companies)){
for (let comp of companies){
if (comp.id == company_id){
load(comp);
break;