From 3519d25f3585112a58dad57ef52ec9af986a265b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 08:58:33 +0000 Subject: [PATCH 1/2] build(deps): bump @fullcalendar/angular Bumps the fullcalendar group in /frontend with 1 update: [@fullcalendar/angular](https://github.com/fullcalendar/fullcalendar-angular). Updates `@fullcalendar/angular` from 6.1.15 to 6.1.16 - [Release notes](https://github.com/fullcalendar/fullcalendar-angular/releases) - [Changelog](https://github.com/fullcalendar/fullcalendar-angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/fullcalendar/fullcalendar-angular/compare/v6.1.15...v6.1.16) --- updated-dependencies: - dependency-name: "@fullcalendar/angular" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fullcalendar ... Signed-off-by: dependabot[bot] --- frontend/package-lock.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 84ad47af62a9..7888f415c205 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -3351,15 +3351,15 @@ "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" }, "node_modules/@fullcalendar/angular": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/angular/-/angular-6.1.15.tgz", - "integrity": "sha512-4QUwYt5X/BQIz+Y6EnRIC9el4MyLPFQ/Yq6ZDPdStH9EGOu+8mDMMCvQFj0RApIgs+uOLe9Vz92Jd4ajTBrymA==", + "version": "6.1.16", + "resolved": "https://registry.npmjs.org/@fullcalendar/angular/-/angular-6.1.16.tgz", + "integrity": "sha512-Qqs0MZPlIDretmWgtOr0H+uiLO6DKeqxqH1Y2oeWufwEbQTaAxhH7mivdTmxL596JkiuJ/1dhCm+v4tVbFb40w==", "dependencies": { "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/common": "12 - 18", - "@angular/core": "12 - 18", + "@angular/common": "12 - 19", + "@angular/core": "12 - 19", "@fullcalendar/core": "~6.1.15" } }, @@ -24213,9 +24213,9 @@ "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" }, "@fullcalendar/angular": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/@fullcalendar/angular/-/angular-6.1.15.tgz", - "integrity": "sha512-4QUwYt5X/BQIz+Y6EnRIC9el4MyLPFQ/Yq6ZDPdStH9EGOu+8mDMMCvQFj0RApIgs+uOLe9Vz92Jd4ajTBrymA==", + "version": "6.1.16", + "resolved": "https://registry.npmjs.org/@fullcalendar/angular/-/angular-6.1.16.tgz", + "integrity": "sha512-Qqs0MZPlIDretmWgtOr0H+uiLO6DKeqxqH1Y2oeWufwEbQTaAxhH7mivdTmxL596JkiuJ/1dhCm+v4tVbFb40w==", "requires": { "tslib": "^2.3.0" } From 2bceb5dfa20603581dfe68f16e0b3872cdd94b64 Mon Sep 17 00:00:00 2001 From: Tobias Dillmann Date: Thu, 5 Dec 2024 13:29:59 +0100 Subject: [PATCH 2/2] [#59898] fix: redundant user popover in profile --- app/components/users/show_page_header_component.html.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/users/show_page_header_component.html.erb b/app/components/users/show_page_header_component.html.erb index 9a8ac99ceed6..73a8d63c799f 100644 --- a/app/components/users/show_page_header_component.html.erb +++ b/app/components/users/show_page_header_component.html.erb @@ -28,7 +28,9 @@ See COPYRIGHT and LICENSE files for more details. ++#%> <%= render(Primer::OpenProject::PageHeader.new) do |header| - header.with_title { "#{avatar @user} #{h(@user.name)}".html_safe } + header.with_title do + "#{avatar(@user, hover_card: { active: false })} #{h(@user.name)}".html_safe + end header.with_breadcrumbs(breadcrumb_items) if @current_user.allowed_globally?(:manage_user)