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) {
87
87
accessor : ( row ) => row . description ,
88
88
// biome-ignore lint/suspicious/noExplicitAny: FIXME
89
89
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" >
91
91
{ cell . value }
92
92
</ span >
93
93
) ,
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ export function Chatbar(props: {
23
23
value = { message }
24
24
onChange = { ( e ) => setMessage ( e . target . value ) }
25
25
onKeyDown = { ( e ) => {
26
+ // ignore if shift key is pressed to allow entering new lines
27
+ if ( e . shiftKey ) {
28
+ return ;
29
+ }
26
30
if ( e . key === "Enter" && ! props . isChatStreaming ) {
27
31
setMessage ( "" ) ;
28
32
props . sendMessage ( message ) ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export function InviteSection(props: {
25
25
} ) {
26
26
const teamPlan = getValidTeamPlan ( props . team ) ;
27
27
let bottomSection : React . ReactNode = null ;
28
- const inviteEnabled = teamPlan !== "free" && props . userHasEditPermission ;
28
+ const inviteEnabled = false ; // teamPlan !== "free" && props.userHasEditPermission;
29
29
30
30
if ( teamPlan === "free" ) {
31
31
bottomSection = (
@@ -62,7 +62,12 @@ export function InviteSection(props: {
62
62
} else {
63
63
bottomSection = (
64
64
< 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
+ >
66
71
< UserPlus className = "size-3" />
67
72
Invite
68
73
</ Button >
You can’t perform that action at this time.
0 commit comments