Skip to content

Commit 452ae10

Browse files
authored
Merge pull request #802 from adlius/fix-project-forking
[ENG-9852] feat(forking): Change resourceType
2 parents 8cff26f + 8395f94 commit 452ae10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/features/project/overview/components/project-overview-toolbar/project-overview-toolbar.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ describe('ProjectOverviewToolbarComponent', () => {
178178
expect(component.ResourceType).toBe(ResourceType);
179179
});
180180

181-
it('should have resourceType set to Registration', () => {
182-
expect(component.resourceType).toBe(ResourceType.Registration);
181+
it('should have resourceType set to Project', () => {
182+
expect(component.resourceType).toBe(ResourceType.Project);
183183
});
184184
});
185185
});

src/app/features/project/overview/components/project-overview-toolbar/project-overview-toolbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class ProjectOverviewToolbarComponent {
6666

6767
isPublic = signal(false);
6868
isBookmarked = signal(false);
69-
resourceType = ResourceType.Registration;
69+
resourceType = ResourceType.Project;
7070

7171
bookmarksCollectionId = select(BookmarksSelectors.getBookmarksCollectionId);
7272
bookmarks = select(BookmarksSelectors.getBookmarks);

0 commit comments

Comments
 (0)