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:
parent
f9a8ac4317
commit
30b7d9fa1c
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user