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
807
Issues
807
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
Commits
3ebd1846
Commit
3ebd1846
authored
5 hours ago
by
Brian Hatchet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CR changes
parent
7093e8d1
feat/disable-comments-526
1 merge request
!426
(Feat) disable comments 526
Pipeline
#71359013
passed with stages
in 27 minutes and 35 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
comment.component.html
src/app/modules/comments/comment/comment.component.html
+1
-1
timediff.service.ts
src/app/services/timediff.service.ts
+2
-2
No files found.
src/app/modules/comments/comment/comment.component.html
View file @
3ebd1846
...
...
@@ -42,7 +42,7 @@
<ul
class=
"m-comment__ribbon"
[
hidden
]="!
toggle
.
value
"
#
toggle
>
<li
class=
"m-commentRibbon__item"
*
ngIf=
"comment.owner_guid == session.getLoggedInUser()?.guid || session.isAdmin()"
*
ngIf=
"comment.owner_guid == session.getLoggedInUser()?.guid || session.isAdmin()
|| canEdit
"
(
click
)="
editing =
!editing;
toggle
.
value =
false"
title=
"Edit"
i18n-title=
"@@M__ACTION__EDIT"
...
...
This diff is collapsed.
Click to expand it.
src/app/services/timediff.service.ts
View file @
3ebd1846
...
...
@@ -4,8 +4,8 @@ import { Injectable } from '@angular/core';
@
Injectable
()
export
class
TimeDiffService
{
public
source
=
interval
(
1000
);
static
_
()
{
return
new
TimeDiffService
();
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment