From a1236df9a9fc75c1aa5dc20117e9158883147cea Mon Sep 17 00:00:00 2001 From: Vasavi Kanamarlapudi Date: Tue, 22 Oct 2024 14:43:36 +0530 Subject: [PATCH 1/2] =?UTF-8?q?Digital=20ACT-191=20CXTDT-626180=20defect:?= =?UTF-8?q?=20Footnote=20Item=20-=20Padding=20issue=20fixed=20for=20the=20?= =?UTF-8?q?Symbol=20type=20=E2=80=98none'.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VDS/Components/Footnote/FootnoteItem.swift | 2 +- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VDS/Components/Footnote/FootnoteItem.swift b/VDS/Components/Footnote/FootnoteItem.swift index 1bbf7b26..3a15b6de 100644 --- a/VDS/Components/Footnote/FootnoteItem.swift +++ b/VDS/Components/Footnote/FootnoteItem.swift @@ -207,7 +207,7 @@ open class FootnoteItem: View { // Update symbolLabel symbolLabel.text = symbolType - symbolLabel.isHidden = hideSymbol + symbolLabel.isHidden = symbolType.isEmpty ? true : hideSymbol symbolLabel.textColor = kind.colorConfiguration.getColor(self) symbolLabel.textStyle = size.textStyle.regular symbolLabel.surface = surface diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index ab4ddef2..da7471d3 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -2,6 +2,7 @@ ---------------- - CXTDT-630735 - PriceLockup - Accessibility - CXTDT-626164 - FootnoteGroup - Dark mode +- CXTDT-626180 - FootnoteItem - Symbol type padding 1.0.75 ---------------- From 15a53964c5010f23b47d6efc3e761b8e970ca8ee Mon Sep 17 00:00:00 2001 From: Sumanth Nadigadda Date: Wed, 23 Oct 2024 13:08:09 +0530 Subject: [PATCH 2/2] Adding release note for CXTDT-586383 changes --- VDS/SupportingFiles/ReleaseNotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index da7471d3..74fadbcd 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -3,6 +3,7 @@ - CXTDT-630735 - PriceLockup - Accessibility - CXTDT-626164 - FootnoteGroup - Dark mode - CXTDT-626180 - FootnoteItem - Symbol type padding +- CXTDT-586383 - Table - Line style can be selected for each row. 1.0.75 ----------------