Closed bennypowers closed 4 years ago
@workaround {AwfulHack}
: I can put this at the very end of my constructor
if (this.hasAttribute('auto-reload')) return;
this.autoReload = false;
Hey, thanks for opening this issue :-)
I forgot to apply default values when parsing/applying jsdoc for members of a component. It has been fixed now, and will be included in the next release.
Input
Expected
autoReload
auto-reload
boolean
reload, so long as the user has not yet interacted with it.
Actual
autoReload
auto-reload
boolean
reload, so long as the user has not yet interacted with it.
If I apply
@default false
, I getautoReload
auto-reload
boolean
reload, so long as the user has not yet interacted with it.