feature/108_vite_migration #118

Merged
philipp merged 27 commits from feature/108_vite_migration into dev 2021-04-03 17:17:25 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit a9227768de - Show all commits

View File

@ -149,7 +149,7 @@
}).showToast();
let count = 0;
const current_cards = await RunnerCardService.runnerCardControllerGetAll();
for await (const t of generate_teams) {
for (const t of generate_teams) {
const runners = await RunnerTeamService.runnerTeamControllerGetRunners(
t.id
);
@ -216,7 +216,7 @@
}).showToast();
let count = 0;
const current_cards = await RunnerCardService.runnerCardControllerGetAll();
for await (const o of generate_orgs) {
for (const o of generate_orgs) {
const runners = await RunnerOrganizationService.runnerOrganizationControllerGetRunners(
o.id
);

View File

@ -37,7 +37,7 @@
duration: -1,
}).showToast();
let count = 0;
for await (const t of generate_teams) {
for (const t of generate_teams) {
count++;
const runners = await RunnerTeamService.runnerTeamControllerGetRunners(
t.id
@ -92,7 +92,7 @@
text: $_("generating-pdf"),
duration: -1,
}).showToast();
for await (const o of generate_orgs) {
for (const o of generate_orgs) {
const runners = await RunnerOrganizationService.runnerOrganizationControllerGetRunners(
o.id
);