Skip to content

Commit

Permalink
🐛 fix adding new tag with no slug
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesau committed Jun 18, 2024
1 parent 32302d7 commit 7529538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminSiteClient/TagsIndexPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class TagsIndexPage extends React.Component {
"/api/tags/new",
{
name: this.newTagName,
slug: this.newTagSlug,
slug: this.newTagSlug || null,
},
"POST"
)
Expand Down

0 comments on commit 7529538

Please sign in to comment.