We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50de031 commit efd2a73Copy full SHA for efd2a73
client/src/components/pages/Mood/AddMood.tsx
@@ -97,7 +97,7 @@ export default function AddMood() {
97
)
98
}
99
/>
100
- <TextArea {...FIELDS.exploration} />
+ <TextArea {...FIELDS.exploration} stretch />
101
</AddEvent>
102
);
103
client/src/components/pages/Mood/EditMood.tsx
@@ -156,7 +156,11 @@ export default function EditMood() {
156
error={descriptionError}
157
158
)}
159
- <TextArea {...FIELDS.exploration} defaultValue={mood.exploration} />
+ <TextArea
160
+ {...FIELDS.exploration}
161
+ defaultValue={mood.exploration}
162
+ stretch
163
+ />
164
</EditEvent>
165
166
0 commit comments