2024.5.0 (#39)

This commit is contained in:
Gregory Schier
2024-06-03 14:08:24 -07:00
committed by GitHub
parent 60e469a1c9
commit 4f9a7e9c88
197 changed files with 12283 additions and 3505 deletions

View File

@@ -52,15 +52,10 @@ export const WorkspaceActionsDropdown = memo(function WorkspaceActionsDropdown({
),
render: ({ hide }) => {
return (
<HStack
space={2}
justifyContent="start"
alignItems="center"
className="mt-4 mb-6 flex-row-reverse"
>
<HStack space={2} justifyContent="start" className="mt-4 mb-6 flex-row-reverse">
<Button
className="focus"
color="gray"
color="primary"
onClick={async () => {
hide();
const environmentId = (await getRecentEnvironments(w.id))[0];
@@ -76,7 +71,7 @@ export const WorkspaceActionsDropdown = memo(function WorkspaceActionsDropdown({
</Button>
<Button
className="focus"
color="gray"
color="secondary"
rightSlot={<Icon icon="externalLink" />}
onClick={async () => {
hide();
@@ -169,7 +164,7 @@ export const WorkspaceActionsDropdown = memo(function WorkspaceActionsDropdown({
size="sm"
className={classNames(
className,
'text-gray-800 !px-2 truncate',
'text-fg !px-2 truncate',
activeWorkspace === null && 'italic opacity-disabled',
)}
{...buttonProps}