Adjust markdown editor

This commit is contained in:
Gregory Schier
2024-12-21 05:39:11 -08:00
parent ec999015ab
commit b4b29babfd
3 changed files with 20 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ export function WorkspaceSettingsDialog({ workspaceId }: Props) {
if (workspace == null) return null;
return (
<VStack space={3} className="pb-3">
<VStack space={3} className="pb-3 max-h-[50vh]">
<PlainInput
label="Workspace Name"
defaultValue={workspace.name}
@@ -29,6 +29,7 @@ export function WorkspaceSettingsDialog({ workspaceId }: Props) {
className="min-h-[10rem] border border-border px-2"
defaultValue={workspace.description}
onChange={(description) => updateWorkspace.mutate({ description })}
heightMode='auto'
/>
</VStack>
);