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
61
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
315825e6
Commit
315825e6
authored
32 minutes ago
by
Mark Harding
Browse files
Options
Download
(fix): aot bad variables
parent
f7799044
feat/2511-activity-v2
No related merge requests found
Pipeline
#115228182
failed with stages
in 12 minutes and 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
src/app/common/components/post-menu/v2/menu.component.html
View file @
315825e6
...
...
@@ -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/modules/newsfeed/activity/content/content.component.html
View file @
315825e6
...
...
@@ -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