Skip to content

Commit da6bd49

Browse files
authored
Merge pull request #803 from Cuiyansong/release
[Hotfix] fix datast to dto type
2 parents cc3a083 + fcaed96 commit da6bd49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/app/types/Chart.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
import ChartDataSetDTO from 'app/types/ChartDataSet';
20+
1921
export type ChartStatus =
2022
| 'init'
2123
| 'depsLoaded'
@@ -117,7 +119,7 @@ export interface IChartLifecycle {
117119
export interface IChart extends IChartLifecycle {
118120
meta: ChartMetadata;
119121
config?: ChartConfig;
120-
dataset?: ChartDataset;
122+
dataset?: ChartDataSetDTO;
121123
dependency: string[];
122124
isISOContainer: boolean | string;
123125
useIFrame?: boolean;

0 commit comments

Comments
 (0)