lovelace-vertical-slider-cover-card
lovelace-vertical-slider-cover-card copied to clipboard
showName and showPosition do not work
Both showName and showPosition don't work.
Reason is in the initialization. They are boolean values and are initialized as follows:
var showName = this.config.showName ? this.config.showName : true;
var showPosition = this.config.showPosition ? this.config.showPosition : true;
If they are true, the value is taken, if they are false, they are overwritten by true.