File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
routes/(console)/organization-[organization]/members Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 3030 export let showAlert = true ;
3131 export let level: ' organization' | ' project' = ' project' ;
3232 export let customPillText: string | undefined = undefined ;
33+ export let showPillMessage: boolean = true ;
3334
3435 export let buttonText: string = null ;
3536 export let buttonMethod: () => void = null ;
129130<header class:u-flex ={isFlex } class =" u-gap-12 common-section u-main-space-between u-flex-wrap" >
130131 <div class =" u-flex u-cross-child-center u-cross-center u-gap-16 u-flex-wrap" >
131132 <Heading tag ={titleTag } size ={titleSize }>{title }</Heading >
132- {#if isCloud && isLimited }
133+ {#if isCloud && isLimited && showPillMessage }
133134 <DropList bind:show ={showDropdown } width =" 16" >
134135 {#if hasProjectLimitation }
135136 <Pill button on:click ={() => (showDropdown = ! showDropdown )}>
Original file line number Diff line number Diff line change 7474 buttonText ={$isOwner ? ' Invite' : ' ' }
7575 buttonMethod ={() => newMemberModal .set (true )}
7676 customPillText =" Members limited"
77+ showPillMessage ={! $currentPlan ?.addons ?.seats ?.supported }
7778 buttonDisabled ={! $currentPlan ?.addons ?.seats ?.supported } />
7879
7980 <TableScroll >
You can’t perform that action at this time.
0 commit comments