Skip to content
Snippets Groups Projects
Commit fb63e81e authored by HJ's avatar HJ :fire:
Browse files

Merge branch 'from/develop/tusooa/1157-popover-trigger' into 'develop'

Fix incorrect close of a status popover when clicking Expand inside it

Closes #1157

See merge request !1514
parents 1041a38f a4ea0a30
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1514Fix incorrect close of a status popover when clicking Expand inside it
Pipeline #39740 passed
......@@ -15,14 +15,14 @@
:emoji="status.emojis"
/>
<button
v-if="longSubject && showingLongSubject"
v-show="longSubject && showingLongSubject"
class="button-unstyled -link tall-subject-hider"
@click.prevent="toggleShowingLongSubject"
>
{{ $t("status.hide_full_subject") }}
</button>
<button
v-else-if="longSubject"
v-show="longSubject && !showingLongSubject"
class="button-unstyled -link tall-subject-hider"
@click.prevent="toggleShowingLongSubject"
>
......@@ -34,7 +34,7 @@
class="text-wrapper"
>
<button
v-if="hideTallStatus"
v-show="hideTallStatus"
class="button-unstyled -link tall-status-hider"
:class="{ '-focused': focused }"
@click.prevent="toggleShowMore"
......@@ -54,7 +54,7 @@
/>
<button
v-if="hideSubjectStatus"
v-show="hideSubjectStatus"
class="button-unstyled -link cw-status-hider"
@click.prevent="toggleShowMore"
>
......@@ -85,7 +85,7 @@
/>
</button>
<button
v-if="showingMore && !fullContent"
v-show="showingMore && !fullContent"
class="button-unstyled -link status-unhider"
@click.prevent="toggleShowMore"
>
......
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