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
383
Merge Requests
65
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
3e7a1f9b
Commit
3e7a1f9b
authored
2 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): failing tests
parent
264627a5
feat/2511-activity-v2
1 merge request
!764
WIP: New activity posts with fixed heights
Pipeline
#115543929
passed with stages
in 90 minutes and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
src/app/modules/newsfeed/activity/activity.service.ts
View file @
3e7a1f9b
...
...
@@ -11,6 +11,7 @@ export type ActivityDisplayOptions = {
showToolbar
:
boolean
;
showBoostMenuOptions
:
boolean
;
showEditedTag
:
boolean
;
showVisibiltyState
:
boolean
;
fixedHeight
:
boolean
;
};
...
...
@@ -121,6 +122,7 @@ export class ActivityService {
showToolbar
:
true
,
showBoostMenuOptions
:
false
,
showEditedTag
:
false
,
showVisibiltyState
:
false
,
fixedHeight
:
false
,
};
...
...
This diff is collapsed.
src/app/modules/newsfeed/single/single.component.spec.ts
View file @
3e7a1f9b
...
...
@@ -117,6 +117,7 @@ describe('NewsfeedSingleComponent', () => {
sessionMock
.
user
.
admin
=
false
;
featuresServiceMock
.
mock
(
'
sync-feeds
'
,
false
);
featuresServiceMock
.
mock
(
'
activity-v2--single-page
'
,
true
);
fixture
.
detectChanges
();
...
...
This diff is collapsed.
Please
register
or
sign in
to comment