[Admin panel] Make Description boxes multi-line (#781)

This commit is contained in:
Blackle Morisanchetto 2022-08-30 05:44:39 -04:00 committed by GitHub
parent 5d9c6b0e5a
commit ea902bb500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -85,6 +85,7 @@ function editableObject(obj, path=[]) {
const hiddenKeys = ["contact_account_", "urls"];
const explicitShownKeys = ["contact_account_username"];
const implementedKeys = "title, contact_account_username, email, short_description, description, terms, avatar, header".split(", ");
const textareaKeys = ["short_description", "description"]
let listing = Object.entries(obj).map(([key, val]) => {
let fullkey = [...path, key].join("_");
@ -155,11 +156,17 @@ function editableObject(obj, path=[]) {
}
}
let field;
if (textareaKeys.includes(fullkey)) {
field = <textarea className={isImplemented} ref={setRef} {...inputProps}></textarea>
} else {
field = <input className={isImplemented} ref={setRef} {...inputProps} />
}
return (
<React.Fragment key={fullkey}>
<label htmlFor={key} className="capitalize">{label}</label>
<div className={isImplemented}>
<input className={isImplemented} ref={setRef} {...inputProps} />
{field}
</div>
</React.Fragment>
);