#7750 - first-beta-review #95

Merged
jsegarra merged 26 commits from wbuezas/hedera-web-mindshore:first-beta-review into beta 2024-12-09 23:18:07 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 09866f5b41 - Show all commits

View File

@ -771,8 +771,10 @@ const showItem = async item => {
if (checkGuest()) return;
showItemDialog.value = true;
const itemLots = await calcItem(item.id);
const tags = await getItemTags(item.id);
const [itemLots, tags] = await Promise.all([
calcItem(item.id),
getItemTags(item.id)
]);
item.lots = itemLots;
item.tags = tags;
selectedItem.value = item;