Posts by Braian Christian • 23 points
2 posts
-
-1
votes1
answer30
viewsQ: My simple classname logic is not comparing right (React)
I’m making a comparison logic within Classname, follows: <button className={'OVERDUE' || 'CONFIRMED' || 'RECEIVED' === 'PENDING' ? 'YES' : 'NO'} onClick={ () => this.showModalEdit(payment)}…
-
2
votes1
answer115
viewsQ: Map to list products in React with dropdown, how to open specific dropdown of each product?
I’m using the map to make a list of products, until then quiet, but in the layout there is a dropdown where we will present more information of that item, until then quiet also. But my problem is…