Some small improvements

This commit is contained in:
Gregory Schier
2023-11-13 11:44:29 -08:00
parent 9a02b63a6b
commit 91074a35d8
3 changed files with 5 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ export const WorkspaceActionsDropdown = memo(function WorkspaceActionsDropdown({
const workspaceItems: DropdownItem[] = workspaces.map((w) => ({
key: w.id,
label: w.name,
rightSlot: w.id === activeWorkspaceId ? <Icon icon="check" /> : undefined,
leftSlot: w.id === activeWorkspaceId ? <Icon icon="check" /> : <Icon icon="empty" />,
onSelect: async () => {
dialog.show({
id: 'open-workspace',