From 5d41e85095cb7b5aee4ac2e4527872efd724553d Mon Sep 17 00:00:00 2001 From: David Requeno Date: Sun, 26 Oct 2025 21:32:01 -0600 Subject: [PATCH 1/4] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1024336b3..b08e10220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a close holding button to the holding detail dialog - Extended the user detail dialog in the users section of the admin control panel +- Extended the activities table menu with a View Holding item ### Changed From ee01e187e0f20b387d52bee25563ae122174f35d Mon Sep 17 00:00:00 2001 From: David Requeno Date: Sun, 26 Oct 2025 21:35:52 -0600 Subject: [PATCH 2/4] Feature/extend menu in activities table component - Extend menu in activities table component - Update changelog --- .../activities-table.component.html | 13 +++++++++++++ .../activities-table/activities-table.component.ts | 6 ++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/libs/ui/src/lib/activities-table/activities-table.component.html b/libs/ui/src/lib/activities-table/activities-table.component.html index 843832e1a..8d1f458a9 100644 --- a/libs/ui/src/lib/activities-table/activities-table.component.html +++ b/libs/ui/src/lib/activities-table/activities-table.component.html @@ -437,6 +437,19 @@ class="no-max-width" xPosition="before" > + @if ( + hasPermissionToOpenDetails && + isExcludedFromAnalysis(element) === false && + element.isDraft === false && + ['BUY', 'DIVIDEND', 'SELL'].includes(element.type) + ) { + + }