From a3083b805b221edbc7c883f8139a82f3eeb51277 Mon Sep 17 00:00:00 2001 From: "Zuo, Kun" Date: Thu, 14 Nov 2024 15:17:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20[JIRA:HCPSDKFIORIUIKIT-?= =?UTF-8?q?2827]cleanup=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stored property 'chartType' of 'Sendable'-conforming struct 'ColumnChartCategoryShape' has non-sendable type 'ChartType'; this is an error in the Swift 6 language mode --- Sources/FioriCharts/Model/ChartType.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/FioriCharts/Model/ChartType.swift b/Sources/FioriCharts/Model/ChartType.swift index 06a34e14b..1b4b1ea84 100644 --- a/Sources/FioriCharts/Model/ChartType.swift +++ b/Sources/FioriCharts/Model/ChartType.swift @@ -1,7 +1,7 @@ import Foundation /// Available chart types. Use this enum to define chart type to present. -public enum ChartType: String { +public enum ChartType: String, Sendable { /// Line Chart case line