Skip to content
Snippets Groups Projects
Commit b5d15edd authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

hide poll when subject collapsed, but show poll icon

parent 39f85871
No related branches found
No related tags found
2 merge requests!1231Update master with 2.1.1,!1220hide poll when subject collapsed, fix #683
Pipeline #30301 passed
......@@ -71,6 +71,10 @@
v-if="attachmentTypes.includes('unknown')"
class="icon-doc"
/>
<span
v-if="status.poll && status.poll.options"
class="icon-chart-bar"
/>
<span
v-if="status.card"
class="icon-link"
......@@ -86,7 +90,7 @@
</a>
</div>
<div v-if="status.poll && status.poll.options">
<div v-if="status.poll && status.poll.options && !hideSubjectStatus">
<poll :base-poll="status.poll" />
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment