Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GhomKrosmonaute committed Oct 6, 2023
1 parent e1286d2 commit 3dab2ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/commands/active.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default new app.Command({
waiting,
activeMembers.indexOf(member),
members.length,
`Verification of **$#**/**$$** active members...`,
`Verification of **$#**/**$$** members...`,
10
)
}
Expand All @@ -97,7 +97,7 @@ export default new app.Command({
waiting,
activeMembers.length + inactiveMembers.indexOf(member),
members.length,
`Verification of **$#**/**$$** inactive members...`,
`Verification of **$#**/**$$** members...`,
10
)
}
Expand Down
9 changes: 6 additions & 3 deletions src/commands/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,12 @@ export default new app.Command({
.setColor()
.setTitle("Database plan")
.setDescription(
`${fields.length} tables, ${fields.reduce((acc, current) => {
return acc + current.value.split("\n").length
}, 0)} columns, `
`**${fields.length}** tables, **${fields.reduce(
(acc, current) => {
return acc + current.value.split("\n").length
},
0
)}** columns`
)
.addFields(
...fields.sort((a, b) => {
Expand Down

0 comments on commit 3dab2ca

Please sign in to comment.