mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
tooltips
This commit is contained in:
parent
2dcdd78316
commit
c1b6b2e01d
1 changed files with 8 additions and 1 deletions
|
|
@ -296,7 +296,14 @@ export const ModelDump = () => {
|
|||
<span className='w-fit truncate'>{modelName}</span>
|
||||
</div>
|
||||
{/* right part is anything that fits */}
|
||||
<div className='flex items-center gap-4'>
|
||||
<div className='flex items-center gap-4'
|
||||
data-tooltip-id='void-tooltip'
|
||||
data-tooltip-place='top'
|
||||
data-tooltip-content={disabled? `${displayInfoOfProviderName(providerName).title} is disabled`
|
||||
: (isHidden ? `'${modelName}' won't appear in dropdowns` : ``)
|
||||
|
||||
}
|
||||
>
|
||||
<span className='opacity-50 truncate'>{isAutodetected ? '(detected locally)' : isDefault ? '' : '(custom model)'}</span>
|
||||
|
||||
<VoidSwitch
|
||||
|
|
|
|||
Loading…
Reference in a new issue