-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Stopped the pluralization of collection name #503
Conversation
@@ -82,7 +81,7 @@ class UnpublishedListing extends React.Component { | |||
<div className={styles.draggable}> | |||
<Card className={styles.card}> | |||
<UnpublishedListingCardMeta | |||
meta={capitalize(pluralize(collection))} | |||
meta={pluralize(collection)} |
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.
I think you meant to remove pluralize
and leave capitalize
.
@damienvdw thanks! Just one change needed, otherwise LGTM. |
Wow, I really need more coffee. It's fixed now 😄 |
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.
LGTM
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.
LGTM
Yeah, first open source PR ever ! 🎉 |
@damienvdw thanks, and congratulations! 🎉 |
a really good fix. no code is good code. |
- Summary
Removed pluralization of collection names in the CMS.
As suggested, this is the minimalist fix for #422
- Test plan
Pass all current tests and no additional tests required.
- Description for the changelog
Stopped the pluralization of collection name