Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jmthomas committed Dec 11, 2023
1 parent bd8c0b2 commit a3a852c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ export default {
.filter(Boolean), // Get rid of non roles (default-roles-openc3)
),
]
.map((element) => self.capitalize(element))
.map((element) => this.capitalize(element))
.sort()
.join(', ')
}
},
capitalize(string) {
capitalize: function (string) {
return string.charAt(0).toUpperCase() + string.slice(1)
},
},
Expand Down

0 comments on commit a3a852c

Please sign in to comment.