Skip to content

Commit 51156ae

Browse files
authored
* chore: release 1.3.11 * fix: issue #2301 fix
1 parent ca4f9e7 commit 51156ae

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

src/app/ideation/components/add-idea/add-idea.component.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@
1515
</div>
1616
<div id="create_idea_footer" [@openSlide]="(app.addIdea | async) ? 'open' : 'closed'">
1717
<div id="post_idea_form_wrap" [class.expanded]="toggleExpand">
18+
<div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap" class="mobile_show"
19+
translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_ANONYMOUS_INFO">
20+
<div class="tooltip" tooltip>
21+
<div class="content_title" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_TITLE"></div>
22+
<div class="content_description" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_DESCRIPTION"></div>
23+
</div>
24+
</div>
1825
<div class="form_header">
1926
<div class="form_header_title">
2027
<span translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_TITLE"></span>
@@ -33,7 +40,7 @@
3340
</div>
3441

3542
<div class="form_header_actions">
36-
<div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap"
43+
<div *ngIf="ideation.allowAnonymous" id="anonymous_info_wrap" class="mobile_hidden"
3744
translate="COMPONENTS.ADD_IDEA.FOOTER_FORM_ANONYMOUS_INFO">
3845
<div class="tooltip" tooltip>
3946
<div class="content_title" translate="COMPONENTS.ADD_IDEA.TOOLTIP_ANONYMOUS_TITLE"></div>

src/app/ideation/components/add-idea/add-idea.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@
163163
.form_header_actions {
164164
display: flex;
165165
gap: 8px;
166+
167+
@include mixins.mobile {
168+
flex-direction: column;
169+
}
166170
}
167171

168172
.form_header_expand_button {

src/assets/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2666,6 +2666,7 @@
26662666
"LNK_CLEAR": "@:LNK_CLEAR",
26672667
"BTN_LEAVE_GROUP": "Leave group",
26682668
"BTN_VIEW_GROUP": "View group",
2669+
"BTN_JOINED_GROUP": "Joined",
26692670
"ORDER_TITLE_ASC": "Order groups A-Z",
26702671
"ORDER_TITLE_DESC": "Order groups Z-A",
26712672
"HEADING_NO_RESUTS": "@:VIEWS.MY.NO_RESULTS_FOUND_TITLE",

0 commit comments

Comments
 (0)