Skip to content

Commit

Permalink
Merge pull request #10 from Turizak/optionalParam
Browse files Browse the repository at this point in the history
handle optional assignment
  • Loading branch information
rakazirut authored Aug 24, 2024
2 parents cab28c9 + e7cc2b2 commit 7bbc04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/trello/functions/createCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const createCard = async (interaction, board) => {
},
{
name: "Labels",
value: `${type ? toTitleCase(type) : ""} ${repo ? ", " + repo.toUpperCase() : ""}`,
value: `${type ? toTitleCase(type) : ""}${repo ? ", " + repo.toUpperCase() : ""}`,
},
{
name: "Assigned To",
Expand Down

0 comments on commit 7bbc04e

Please sign in to comment.