mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 09:58:04 +08:00
Feat/loop break node (#17268)
This commit is contained in:
@ -94,7 +94,7 @@ export default function AppSelector() {
|
||||
{userProfile.name}
|
||||
{isEducationAccount && (
|
||||
<PremiumBadge size='s' color='blue' className='ml-1 !px-2'>
|
||||
<RiGraduationCapFill className='w-3 h-3 mr-1' />
|
||||
<RiGraduationCapFill className='mr-1 h-3 w-3' />
|
||||
<span className='system-2xs-medium'>EDU</span>
|
||||
</PremiumBadge>
|
||||
)}
|
||||
|
||||
@ -42,8 +42,8 @@ const PlanBadge: FC<PlanBadgeProps> = ({ plan, allowHover, sandboxAsUpgrade = fa
|
||||
if (plan === Plan.professional) {
|
||||
return <PremiumBadge className='select-none' size='s' color='blue' allowHover={allowHover} onClick={onClick}>
|
||||
<div className='system-2xs-medium-uppercase'>
|
||||
<span className='p-1 inline-flex items-center gap-1'>
|
||||
{isEducationWorkspace && <RiGraduationCapFill className='w-3 h-3' />}
|
||||
<span className='inline-flex items-center gap-1 p-1'>
|
||||
{isEducationWorkspace && <RiGraduationCapFill className='h-3 w-3' />}
|
||||
pro
|
||||
</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user