Svelte select dropdown fix bugfix/98-dropdowns #100

Merged
niggl merged 12 commits from bugfix/98-dropdowns into dev 2021-03-18 16:30:15 +00:00
Showing only changes of commit c575c73764 - Show all commits

View File

@ -38,7 +38,6 @@ import Teams from "./Teams.svelte";
data_loaded = true;
teamdata = Object.assign(teamdata, value);
original = Object.assign(original, value);
});
RunnerOrganizationService.runnerOrganizationControllerGetAll().then((val) => {
orgs = val.map((r) => {
return { label: r.name, value: r };
@ -56,6 +55,7 @@ import Teams from "./Teams.svelte";
contact = null;
}
});
});
document.addEventListener("click", function (e) {
if (
e.target.parentNode?.parentNode?.id != "sponsoring:dropdown" &&