Skip to content

Commit

Permalink
Merge pull request #9 from Turizak/optionalParam
Browse files Browse the repository at this point in the history
handle optional repo
  • Loading branch information
rakazirut authored Aug 24, 2024
2 parents b5029e9 + f2efe41 commit cab28c9
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 cab28c9

Please sign in to comment.