Fix type not returning profile name

This commit is contained in:
Wolfsblvt 2024-09-07 19:32:58 +02:00
parent 4fd7828a9b
commit 7e64d216c3
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ async function renderDetailsContent(details, detailsContent) {
profiles.selectedIndex = Array.from(profiles.options).findIndex(o => o.value === profile.id); profiles.selectedIndex = Array.from(profiles.options).findIndex(o => o.value === profile.id);
profiles.dispatchEvent(new Event('change')); profiles.dispatchEvent(new Event('change'));
return profiles.name; return profile.name;
}, },
})); }));