Skip to content

Commit efd2a73

Browse files
committed
fix(Moods): Journal field should stretch
1 parent 50de031 commit efd2a73

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

client/src/components/pages/Mood/AddMood.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function AddMood() {
9797
)
9898
}
9999
/>
100-
<TextArea {...FIELDS.exploration} />
100+
<TextArea {...FIELDS.exploration} stretch />
101101
</AddEvent>
102102
);
103103
}

client/src/components/pages/Mood/EditMood.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,11 @@ export default function EditMood() {
156156
error={descriptionError}
157157
/>
158158
)}
159-
<TextArea {...FIELDS.exploration} defaultValue={mood.exploration} />
159+
<TextArea
160+
{...FIELDS.exploration}
161+
defaultValue={mood.exploration}
162+
stretch
163+
/>
160164
</EditEvent>
161165
);
162166
}

0 commit comments

Comments
 (0)