mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 05:02:28 +00:00
Added missing return statement
This commit is contained in:
@@ -56359,7 +56359,7 @@ const displaySize = function(size) {
|
||||
case 'huge': return 'Huge';
|
||||
case 'g':
|
||||
case 'gargantuan': return 'Gargantuan';
|
||||
default: capitalizeFirst(size);
|
||||
default: return capitalizeFirst(size);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ const displaySize = function(size) {
|
||||
case 'huge': return 'Huge';
|
||||
case 'g':
|
||||
case 'gargantuan': return 'Gargantuan';
|
||||
default: capitalizeFirst(size);
|
||||
default: return capitalizeFirst(size);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user