Fix chat navigator font size (#6947)

Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
Kristina 2024-10-15 23:38:52 +04:00 committed by Andrey Sobolev
parent a10f8cf1a2
commit 9eb914f598
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
5 changed files with 2 additions and 7 deletions

View File

@ -44,7 +44,6 @@
export let disabled: boolean = false
export let isFold: boolean = false
export let isOpen: boolean = false
export let isSecondary: boolean = false
export let withBackground: boolean = false
export let showMenu: boolean = false
export let shouldTooltip: boolean = false
@ -78,7 +77,7 @@
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
<button
class="hulyNavItem-container line-height-auto {type} {type === 'type-anchor-link' || isSecondary
class="hulyNavItem-container line-height-auto {type} {type === 'type-anchor-link'
? 'font-regular-12'
: 'font-regular-14'}"
class:selected

View File

@ -123,7 +123,6 @@
_id={item.id}
icon={item.icon}
withIconBackground={item.withIconBackground}
isSecondary={item.isSecondary}
iconSize={item.iconSize}
{isSelected}
iconProps={{ ...item.iconProps, value: item.object }}

View File

@ -91,8 +91,7 @@
icon: icon ?? getObjectIcon(_class),
iconProps: { showStatus: true },
iconSize,
withIconBackground: !isDirect && !isPerson,
isSecondary: isDocChat && !isPerson
withIconBackground: !isDirect && !isPerson
})
}

View File

@ -71,7 +71,6 @@
{title}
{description}
selected={isSelected}
{isSecondary}
count={elementsCount > 0 ? elementsCount : null}
{type}
withBackground={withIconBackground}

View File

@ -46,7 +46,6 @@ export interface ChatNavItemModel {
icon: Asset | AnySvelteComponent | undefined
iconSize?: IconSize
iconProps: Record<string, any>
isSecondary: boolean
withIconBackground: boolean
}