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
838
Issues
838
List
Boards
Labels
Service Desk
Milestones
Merge Requests
43
Merge Requests
43
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
85e1c3ad7d9f0026f9e4eafcfae0f62fb10c09bf...baa22ca9e6fcc3bd5d0cc150f0615e2aa393f4d7
Source
baa22ca9e6fcc3bd5d0cc150f0615e2aa393f4d7
Select Git revision
...
Target
85e1c3ad7d9f0026f9e4eafcfae0f62fb10c09bf
Select Git revision
Compare
Commits (2)
Removing diagnostic comment
· 0f8e4a4b
Brian Hatchet
authored
3 hours ago
0f8e4a4b
Adding activity service to whatever component implements activity.html
· baa22ca9
Brian Hatchet
authored
35 minutes ago
baa22ca9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
comment.ts
src/app/modules/legacy/components/buttons/comment.ts
+1
-3
preview.ts
src/app/modules/legacy/components/cards/activity/preview.ts
+2
-0
remind.ts
src/app/modules/legacy/components/cards/remind/remind.ts
+2
-0
No files found.
src/app/modules/legacy/components/buttons/comment.ts
View file @
baa22ca9
...
...
@@ -31,9 +31,7 @@ export class CommentButton implements OnInit, OnDestroy {
protected
cd
:
ChangeDetectorRef
)
{
}
ngOnInit
()
{
console
.
log
(
'
comment button init
'
);
}
ngOnInit
()
{
}
ngOnDestroy
()
{
}
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/legacy/components/cards/activity/preview.ts
View file @
baa22ca9
...
...
@@ -4,6 +4,7 @@ import { Client } from '../../../../../services/api';
import
{
Session
}
from
'
../../../../../services/session
'
;
import
{
AttachmentService
}
from
'
../../../../../services/attachment
'
;
import
{
ActivityService
}
from
'
../../../../../common/services/activity.service
'
;
@
Component
({
moduleId
:
module
.
id
,
...
...
@@ -13,6 +14,7 @@ import { AttachmentService } from '../../../../../services/attachment';
host
:
{
class
:
'
mdl-shadow--8dp
'
},
providers
:
[
ActivityService
],
changeDetection
:
ChangeDetectionStrategy
.
OnPush
,
})
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/legacy/components/cards/remind/remind.ts
View file @
baa22ca9
...
...
@@ -3,11 +3,13 @@ import { Component, ChangeDetectionStrategy, ChangeDetectorRef, EventEmitter, In
import
{
Client
}
from
'
../../../../../services/api
'
;
import
{
Session
}
from
'
../../../../../services/session
'
;
import
{
AttachmentService
}
from
'
../../../../../services/attachment
'
;
import
{
ActivityService
}
from
'
../../../../../common/services/activity.service
'
;
@
Component
({
moduleId
:
module
.
id
,
selector
:
'
minds-remind
'
,
inputs
:
[
'
object
'
,
'
_events: events
'
],
providers
:
[
ActivityService
],
templateUrl
:
'
../activity/activity.html
'
,
changeDetection
:
ChangeDetectionStrategy
.
OnPush
,
})
...
...
This diff is collapsed.
Click to expand it.