Fixed an issue where readmore would show undefined if the value was null, not it shows nothing if there is no value.

This commit is contained in:
MattMo 2023-12-24 15:21:18 -08:00
parent f9a8ac4317
commit 30b7d9fa1c

View File

@ -23,7 +23,7 @@ class ReadMore extends IgniteElement {
render() { render() {
return this.template.child( return this.template.child(
new text([this.collapsed, this.value, this.limit], (collapsed, value, limit) => collapsed && value && value.length > limit ? value.substring(0, limit).trimEnd() + "..." : value), new text([this.collapsed, this.value, this.limit], (collapsed, value, limit) => collapsed && value && value.length > limit ? value.substring(0, limit).trimEnd() + "..." : (value ? value : "")),
new button() new button()
.show([this.value, this.limit], (value, limit) => value && value.length > limit) .show([this.value, this.limit], (value, limit) => value && value.length > limit)