UX: Only add `user-badge-buttons` wrapper when badges exist (#30060)
Followup to 2513339955
This commit is contained in:
parent
9389bf295c
commit
c3e87b5036
|
@ -141,7 +141,7 @@ export default createWidget("poster-name", {
|
|||
}
|
||||
}
|
||||
|
||||
if (attrs.badgesGranted) {
|
||||
if (attrs.badgesGranted?.length) {
|
||||
const badges = [];
|
||||
attrs.badgesGranted.forEach((badge) => {
|
||||
// Alter the badge description to show that the badge was granted for this post.
|
||||
|
|
Loading…
Reference in New Issue