Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/EmbedFieldsEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const EmbedFieldsEditor: FC<EmbedFieldsEditorProps> = ({ fields, onChange }) =>
{fields.map((field, i) => (
<div key={i} className="p-3 rounded bg-gray-800 flex flex-col gap-2">
<div className="flex items-start justify-between gap-2">
<div className="flex-1 grid gap-2 grid-cols-1 md:grid-cols-2">
<div className="flex-1 flex flex-col gap-2">
<TextInput
label="Field Name"
placeholder="Field name"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Textarea: FC<TextareaProps> = (props) => {
<div className={`inline-flex items-center bg-gray-700 border rounded px-1 ${borderClass}`}>
<textarea
id={textareaId}
className="w-full bg-gray-700 p-3 rounded resize-y max-h-50 h-50 focus:outline-none"
className="w-full bg-gray-700 p-3 rounded resize-y h-50 focus:outline-none"
value={safeValue}
onChange={(e) => onChange(e.target.value)}
onBlur={onBlur}
Expand Down
Loading