Skip to content

Commit a8013c4

Browse files
committed
Misc note edition UI adjustments
1 parent 7bb3c6d commit a8013c4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/atomic-crm/notes/Note.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ export const Note = ({
149149
</span>
150150
</div>
151151
{isEditing ? (
152-
<Form onSubmit={handleNoteUpdate} record={note}>
152+
<Form onSubmit={handleNoteUpdate} record={note} className="mt-1">
153153
<NoteInputs showStatus={showStatus} />
154-
<div className="flex justify-end mt-4 space-x-4">
154+
<div className="flex justify-end mt-2 space-x-4">
155155
<Button
156156
variant="ghost"
157157
onClick={handleCancelEdit}

src/components/atomic-crm/notes/NoteInputs.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export const NoteInputs = ({ showStatus }: { showStatus?: boolean }) => {
2424
multiline
2525
helperText={false}
2626
placeholder="Add a note"
27+
rows={6}
2728
/>
2829

2930
{!displayMore && (

0 commit comments

Comments
 (0)