-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added show_description to listing attachment #931
base: main
Are you sure you want to change the base?
Conversation
@@ -64,7 +66,7 @@ const AttachmentCardTemplate = ({ | |||
: item?.['@id'] + '/@@download/file', | |||
}; | |||
} | |||
|
|||
const listingText = <ListingText item={item} />; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lo sistemerei a questo punto qui:
const listingText = show_description ? (<ListingText item={item} />) : null;
{show_description && listingText && ( | ||
<div className="bando-description">{listingText}</div> | ||
)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{listingText && (<div className="bando-description">{listingText}</div>)
@@ -26,6 +27,7 @@ const AttachmentCardTemplate = ({ | |||
linkTitle, | |||
linkHref, | |||
show_pdf_preview, | |||
show_description, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
show_description = false,
questo ti consente di dire che se non c'è settato alcun valore ancora è inizializzato a false
show_description: { | ||
default: false, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
credo che tu questo lo possa togliere perchè 'show_description' è una prop già note, infatti non vedo ne label ne description settate qui, prova a rimuoverlo e dimmi se lo vedi lo stesso
No description provided.