Fix stringyness of subtitle

This commit is contained in:
Adam Goldsmith 2021-09-08 14:46:26 -04:00
parent 7351eade40
commit e4a6b2db6b
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ function build_card(component) {
var subtitle = component.settings.get('Subtitle');
if (subtitle && subtitle != '') {
card_data.subname = subtitle;
card_data.subname = String(subtitle);
}
var faction2 = component.settings.get('CardClass2');