Skip to content

Commit

Permalink
Simpler Enabled/Disable settings text
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakaHaceCosas committed Jan 31, 2025
1 parent f45beb9 commit 9010c79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/humanizeSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export function humanizeSettings(string: string) {
const humanized = string
.trim()
.replaceAll("_", " ")
.replaceAll("true", "***Enabled***")
.replaceAll("false", "***Disabled***")
.replaceAll("true", "Enabled")
.replaceAll("false", "Disabled")
.replaceAll("(name)", "`(name)`")
.replaceAll("(servername)", "`(servername)`")
.replaceAll("(count)", "`(count)`");
Expand Down

0 comments on commit 9010c79

Please sign in to comment.