fix content being displayed when blank

This commit is contained in:
shibao 2023-11-26 17:30:14 -05:00
parent fdfca3f7a5
commit f56ecc0ba3
5 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,6 @@
# v0.1.15
- Fix content being displayed when blank
# v0.1.14
- Fix issue with item content not able to be displayed sometimes

View File

@ -1,4 +1,5 @@
<div
:if={@context.content}
id={"show-context-content-#{@context.id}"}
class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto resize-y"
phx-update="ignore"

View File

@ -1,4 +1,5 @@
<div
:if={@note.content}
id={"show-note-content-#{@note.id}"}
class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto resize-y"
phx-update="ignore"

View File

@ -1,4 +1,5 @@
<div
:if={@pipeline.description}
id={"show-pipeline-description-#{@pipeline.id}"}
class="input input-primary h-32 min-h-32 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto resize-y"
phx-update="ignore"

View File

@ -1,4 +1,5 @@
<div
:if={@step.content}
id={"show-step-content-#{@step.id}"}
class="input input-primary h-32 min-h-32 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto resize-y"
phx-update="ignore"