Fixed Apostrophe
Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
df95fdc08a
commit
47279d1c3b
2 changed files with 3 additions and 3 deletions
|
@ -103,10 +103,10 @@ With inbuilt themes you can customize the look of the card without doing any [ma
|
|||
Use `?theme=THEME_NAME` parameter like so :-
|
||||
|
||||
```md
|
||||

|
||||

|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
#### All inbuilt themes :-
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ export default class ProfileCard extends Card {
|
|||
)
|
||||
|
||||
this.title = `${encodeHTML(this.username)}${
|
||||
['x', 's'].includes(this.username.slice(-1)) ? '' : 's'
|
||||
['x', 's'].includes(this.username.slice(-1)) ? '\'' : '\'s'
|
||||
} Code::Stats Profile`
|
||||
|
||||
const textColor = getColor('text_color', options.text_color, options.theme)
|
||||
|
|
Loading…
Add table
Reference in a new issue