Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
(fix): Missing activity.html properties crashing AOT
· 2c9e0f2c
Emiliano Balbuena
authored
Jun 14, 2019
and
Mark Harding
committed
Jun 14, 2019
2c9e0f2c
Merge branch 'hotfix/failing-aot-activities-1' into 'master'
· 45b1ced9
Mark Harding
authored
Jun 14, 2019
(fix): Missing activity.html properties crashing AOT See merge request
!355
45b1ced9
Hide whitespace changes
Inline
Side-by-side
src/app/modules/legacy/components/cards/activity/preview.ts
View file @
45b1ced9
...
...
@@ -65,6 +65,10 @@ export class ActivityPreview {
return
false
;
}
isPending
(
activity
)
{
return
false
;
}
save
()
{
/* NOOP */
}
openComments
()
{
/* NOOP */
}
...
...
src/app/modules/legacy/components/cards/remind/remind.ts
View file @
45b1ced9
...
...
@@ -106,6 +106,10 @@ export class Remind {
save
()
{
/* NOOP */
}
isPending
(
activity
)
{
return
activity
&&
activity
.
pending
&&
activity
.
pending
!==
'
0
'
;
}
openComments
()
{
/* NOOP */
}
showBoost
()
{
/* NOOP */
}
...
...