Add project activity history panel#666
Open
LrxGaelle wants to merge 6 commits into
Open
Conversation
NicolasRichel
requested changes
May 13, 2026
| return ProjectService.getProjectFolderTree(project); | ||
| }; | ||
|
|
||
| const fetchLogs = async (project) => { |
Member
There was a problem hiding this comment.
async is not necessary here.
Suggested change
| const fetchLogs = async (project) => { | |
| const fetchLogs = (project) => { |
| })); | ||
| }; | ||
|
|
||
| const getProjectFolderTree = async (project) => { |
Member
There was a problem hiding this comment.
async is not necessary here.
Suggested change
| const getProjectFolderTree = async (project) => { | |
| const getProjectFolderTree = (project) => { |
| "@bimdata/bcf-components": "6.7.7", | ||
| "@bimdata/components": "1.10.1", | ||
| "@bimdata/design-system": "2.3.0", | ||
| "@bimdata/design-system": "2.4.0", |
Member
There was a problem hiding this comment.
develop is already in v2.4.1 (I merged a dependabot PR this yesterday) so you can discard these changes and rebase on develop. ;)
NicolasRichel
requested changes
May 13, 2026
| gap: var(--spacing-unit); | ||
| } | ||
|
|
||
| &:deep() { |
Member
There was a problem hiding this comment.
Removing this breaks the styles of the main tabs on ProjectOverview.
I would suggest to handle the style leak by adding a more specific selector so that these tules only apply to main tabs (and not project activity/notification tabs).
| "groupsButtonText": "Gestion des groupes" | ||
| }, | ||
| "ProjectOverview": { | ||
| "title": "", |
Member
There was a problem hiding this comment.
title is empty here, is that intentional ?
NicolasRichel
requested changes
May 13, 2026
Member
There was a problem hiding this comment.
This file should be moved in src/config.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
https://platform-dev-history-activity.bimdata.io
This PR introduces a new activity history panel in the project overview to help users track important actions performed within the project.
Added features
Supported activity types
Project :
Invitations / access management :
Types of changes
Checklist