File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
site/src/components/WorkspaceActions Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export const WorkspaceActions: FC<WorkspaceActionsProps> = ({
77
77
}
78
78
79
79
return (
80
- < div className = { styles . buttonContainer } >
80
+ < span className = { styles . buttonContainer } >
81
81
{ /* primary workspace CTA */ }
82
82
< span data-testid = "primary-cta" > { buttonMapping [ actions . primary ] } </ span >
83
83
@@ -120,14 +120,15 @@ export const WorkspaceActions: FC<WorkspaceActionsProps> = ({
120
120
) ) }
121
121
</ span >
122
122
</ Popover >
123
- </ div >
123
+ </ span >
124
124
)
125
125
}
126
126
127
127
const useStyles = makeStyles ( ( theme ) => ( {
128
128
buttonContainer : {
129
129
border : `1px solid ${ theme . palette . divider } ` ,
130
130
borderRadius : `${ theme . shape . borderRadius } px` ,
131
+ display : "inline-block" ,
131
132
} ,
132
133
dropdownButton : {
133
134
border : "none" ,
You can’t perform that action at this time.
0 commit comments