Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
809
Issues
809
List
Boards
Labels
Service Desk
Milestones
Merge Requests
53
Merge Requests
53
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
033e97f2a9a490013f628d50cd011a1ea5c6d1d5...8a5bdcd8617c9bbeb4bff6d521432b80f4e1659e
Source
8a5bdcd8617c9bbeb4bff6d521432b80f4e1659e
Select Git revision
...
Target
033e97f2a9a490013f628d50cd011a1ea5c6d1d5
Select Git revision
Compare
Commits (3)
(fix): show comments in appeal console
· b6f6ddb2
Marcelo Rivera
authored
30 minutes ago
b6f6ddb2
(fix): re-added border to comments in juryduty
· 56f33c3f
Marcelo Rivera
authored
16 minutes ago
56f33c3f
(fix): distinguish between posts and comments in reports console
· 8a5bdcd8
Marcelo Rivera
authored
15 minutes ago
8a5bdcd8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
appeal.component.html
src/app/modules/report/console/appeal.component.html
+10
-4
content.component.scss
...pp/modules/report/juryduty/session/content.component.scss
+0
-1
No files found.
src/app/modules/report/console/appeal.component.html
View file @
8a5bdcd8
...
...
@@ -3,7 +3,12 @@
<b>
{{ appeal.time_created * 1000 | date: 'short' }}
</b>
<p>
<strong>
Action taken:
</strong>
<span>
This post has been
</span>
<span>
This
<ng-container
*
ngIf=
"appeal.report.entity.type !== 'comment'"
>
post
</ng-container>
<ng-container
*
ngIf=
"appeal.report.entity.type == 'comment'"
>
comment
</ng-container>
has been
</span>
<b>
{{ service.getAction(appeal.report) }}
</b>
<span>
for
</span>
<b>
{{ service.getReasonString(appeal.report) }}
</b>
...
...
@@ -39,17 +44,18 @@
hostClass=
"mdl-card"
></minds-card>
<div
*
ngIf=
"appeal.
entityObj && appeal.entityObj
.type == 'comment'"
class=
"m-comment-wrapper"
>
<div
*
ngIf=
"appeal.
report.entity && appeal.report.entity
.type == 'comment'"
class=
"m-comment-wrapper"
>
<div
class=
"m-moderationAppeal__commentNote"
>
<a
target=
"_blank"
[
routerLink
]="['/
newsfeed
',
appeal
.
entityObj
.
parent_guid
]"
[
routerLink
]="['/
newsfeed
',
appeal
.
report
.
entity
.
entity_guid
]"
[
queryParams
]="{
focusedCommentUrn:
appeal
.
report
.
entity_urn
}"
i18n=
"@@M__COMMON__VIEW_PARENT_COMMENT_THREAD"
>
View parent and its comment thread
</a>
</div>
<minds-card-comment
[
object
]="
appeal
.
entityObj
"
[
object
]="
appeal
.
report
.
entity
"
class=
"mdl-card"
>
</minds-card-comment>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/report/juryduty/session/content.component.scss
View file @
8a5bdcd8
...
...
@@ -31,7 +31,6 @@
max-width
:
600px
;
m-comment
{
border
:
none
!
important
;
max-width
:
initial
!
important
;
}
...
...
This diff is collapsed.
Click to expand it.