fewieden / MMM-soccer

European Soccer Standings Module for MagicMirror²
MIT License
31 stars 24 forks source link

How to remove HEADER #30

Closed thymon13 closed 4 years ago

thymon13 commented 4 years ago

Hello !

I would like remove the module's Header.

showHeader: 'false', doesn't work

Thank in advance

fewieden commented 4 years ago

hi @thymon13 your value has the type string (text inside quotes). What you need is the type boolean (true and false without quotes). By the nature of javascript, a string is always true, except it is empty.

Try showHeader: false,

thymon13 commented 4 years ago

Yes Thx !