Skip to content

Commit 445c410

Browse files
committed
Fix Missing nowrap in new menu #BEXIS2/Core#2109
1 parent c92ea4a commit 445c410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/components/page/menu/MenuItem.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
{#if menubarItem.Items.length < 1}
2828
<div class="p-2">
29-
29+
3030
<button class="grid" use:popup={popupCombobox} >
3131
<a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
3232
<span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
@@ -49,7 +49,7 @@
4949
</div>
5050
<div class="hidden sm:block place-self-center" use:popup={popupCombobox}>
5151
<button class="flex items-center gap-x-1 px-2">
52-
<span>{menubarItem.Title}▾</span>
52+
<span class="capitalize whitespace-nowrap">{menubarItem.Title}▾</span>
5353
</button>
5454

5555
<div class="z-50 w-max" data-popup={id}>

0 commit comments

Comments
 (0)