Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
382
Merge Requests
62
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
a11ce73d
Commit
a11ce73d
authored
2 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): aot bad variables
parent
f7799044
feat/2511-activity-v2
1 merge request
!764
WIP: New activity posts with fixed heights
Pipeline
#115257678
running with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
src/app/common/components/post-menu/v2/menu.component.html
View file @
a11ce73d
...
...
@@ -151,11 +151,7 @@
</ng-container>
<!-- ADMIN EDIT FLAGS -->
<ng-container
*ngIf=
"
options.indexOf('set-explicit') !== -1 && (service.isOwner$ | async)
"
>
<ng-container
*ngIf=
"options.indexOf('set-explicit') !== -1 && canEdit"
>
<li
class=
"m-dropdownList__item m-postMenu__item--nsfw"
>
<m-nsfw-selector
service=
"editing"
...
...
This diff is collapsed.
src/app/common/components/post-menu/v2/menu.component.ts
View file @
a11ce73d
...
...
@@ -46,6 +46,7 @@ export class PostMenuV2Component implements OnInit {
@
Input
()
options
:
Array
<
Option
>
;
@
Output
()
optionSelected
:
EventEmitter
<
Option
>
=
new
EventEmitter
<
Option
>
();
@
Input
()
canDelete
:
boolean
=
false
;
@
Input
()
canEdit
:
boolean
=
false
;
@
Input
()
isTranslatable
:
boolean
=
false
;
@
Input
()
user
:
any
;
...
...
This diff is collapsed.
src/app/modules/newsfeed/activity/content/content.component.html
View file @
a11ce73d
...
...
@@ -67,7 +67,7 @@
</div>
<!-- Translation -->
<div
<
!-- <
div
*ngIf="
translate &&
translate.translation &&
...
...
@@ -79,7 +79,7 @@
<div class="" [hidden]="!translate.translation.title">
<span [innerHtml]="translate.translation.title | tags"></span>
</div>
</div>
</div>
-->
<!-- End translation -->
<!--
...
...
This diff is collapsed.
Please
register
or
sign in
to comment