File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
(dashboard)/profile/[addressOrEns]/components
nebula-app/(app)/components
team/[team_slug]/(team)/~/settings/members Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export function PublishedContractTable(props: PublishedContractTableProps) {
8787 accessor : ( row ) => row . description ,
8888 // biome-ignore lint/suspicious/noExplicitAny: FIXME
8989 Cell : ( cell : any ) => (
90- < span className = "line-clamp-2 text-muted-foreground" >
90+ < span className = "line-clamp-2 max-w-[350px] whitespace-normal text-muted-foreground" >
9191 { cell . value }
9292 </ span >
9393 ) ,
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ export function Chatbar(props: {
2323 value = { message }
2424 onChange = { ( e ) => setMessage ( e . target . value ) }
2525 onKeyDown = { ( e ) => {
26+ // ignore if shift key is pressed to allow entering new lines
27+ if ( e . shiftKey ) {
28+ return ;
29+ }
2630 if ( e . key === "Enter" && ! props . isChatStreaming ) {
2731 setMessage ( "" ) ;
2832 props . sendMessage ( message ) ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export function InviteSection(props: {
2525} ) {
2626 const teamPlan = getValidTeamPlan ( props . team ) ;
2727 let bottomSection : React . ReactNode = null ;
28- const inviteEnabled = teamPlan !== "free" && props . userHasEditPermission ;
28+ const inviteEnabled = false ; // teamPlan !== "free" && props.userHasEditPermission;
2929
3030 if ( teamPlan === "free" ) {
3131 bottomSection = (
@@ -62,7 +62,12 @@ export function InviteSection(props: {
6262 } else {
6363 bottomSection = (
6464 < div className = "flex items-center border-border border-t px-4 py-4 lg:justify-end lg:px-6" >
65- < Button variant = "outline" size = "sm" className = "gap-2 max-sm:w-full" >
65+ < Button
66+ variant = "outline"
67+ size = "sm"
68+ className = "gap-2 max-sm:w-full"
69+ disabled
70+ >
6671 < UserPlus className = "size-3" />
6772 Invite
6873 </ Button >
You can’t perform that action at this time.
0 commit comments