From d59dfc3d5bc2ae085226af12c960b96c7af143c7 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 19 Oct 2024 10:04:10 +0200 Subject: [PATCH 1/2] Feature/Archive discontinued personal finance tools (#3945) * Archive discontinued personal finance tools --- libs/common/src/lib/personal-finance-tools.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/common/src/lib/personal-finance-tools.ts b/libs/common/src/lib/personal-finance-tools.ts index 7378fbcd4..1ec5fbbc2 100644 --- a/libs/common/src/lib/personal-finance-tools.ts +++ b/libs/common/src/lib/personal-finance-tools.ts @@ -115,6 +115,7 @@ export const personalFinanceTools: Product[] = [ }, { founded: 2022, + isArchived: true, key: 'capmon', name: 'CapMon.org', origin: 'Germany', @@ -303,6 +304,7 @@ export const personalFinanceTools: Product[] = [ { hasFreePlan: true, hasSelfHostingAbility: false, + isArchived: true, key: 'intuit-mint', name: 'Intuit Mint', note: 'Intuit Mint was discontinued in 2023', @@ -413,6 +415,7 @@ export const personalFinanceTools: Product[] = [ { founded: 1991, hasSelfHostingAbility: true, + isArchived: true, key: 'microsoft-money', name: 'Microsoft Money', note: 'Microsoft Money was discontinued in 2010', @@ -520,6 +523,7 @@ export const personalFinanceTools: Product[] = [ }, { hasFreePlan: true, + isArchived: true, key: 'portfoloo', name: 'Portfoloo', note: 'Portfoloo was discontinued', @@ -558,6 +562,7 @@ export const personalFinanceTools: Product[] = [ { founded: 2019, hasSelfHostingAbility: false, + isArchived: true, key: 'sarmaaya.pk', name: 'Sarmaaya.pk Portfolio Tracking', note: 'Sarmaaya.pk Portfolio Tracking was discontinued in 2024', @@ -594,6 +599,7 @@ export const personalFinanceTools: Product[] = [ }, { hasFreePlan: true, + isArchived: true, key: 'sharesmaster', name: 'SharesMaster', note: 'SharesMaster was discontinued', @@ -634,6 +640,7 @@ export const personalFinanceTools: Product[] = [ }, { founded: 2008, + isArchived: true, key: 'stockmarketeye', name: 'StockMarketEye', origin: 'France', @@ -746,6 +753,7 @@ export const personalFinanceTools: Product[] = [ founded: 2021, hasFreePlan: true, hasSelfHostingAbility: false, + isArchived: true, key: 'yeekatee', languages: ['Deutsch', 'English', 'Español', 'Français', 'Italiano'], name: 'yeekatee', From 6bb7c0d19602806856f73f30a7b6d9b34d5f9326 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 19 Oct 2024 10:04:27 +0200 Subject: [PATCH 2/2] Bugfix/fix style selector in carousel component (#3948) * Fix style selector * Update changelog --- CHANGELOG.md | 6 ++++++ libs/ui/src/lib/carousel/carousel.component.scss | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c369e5905..e08f74559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- Fixed an issue in the carousel component for the testimonial section on the landing page + ## 2.116.0 - 2024-10-17 ### Added diff --git a/libs/ui/src/lib/carousel/carousel.component.scss b/libs/ui/src/lib/carousel/carousel.component.scss index 546c92194..05ab9ff93 100644 --- a/libs/ui/src/lib/carousel/carousel.component.scss +++ b/libs/ui/src/lib/carousel/carousel.component.scss @@ -3,7 +3,7 @@ position: relative; ::ng-deep { - [gf-carousel-item] { + [gfCarouselItem] { flex-shrink: 0; width: 100%; }