Skip to content
Snippets Groups Projects
Commit 66493e95 authored by stevereis's avatar stevereis
Browse files

Fix optional parameters

parent 12890382
No related branches found
No related tags found
No related merge requests found
......@@ -43,10 +43,10 @@ export class LineChartResult extends Result {
@Field()
name: string;
@Field(() => ChartAxis)
@Field(() => ChartAxis, { nullable: true })
xAxis?: ChartAxis;
@Field(() => ChartAxis)
@Field(() => ChartAxis, { nullable: true })
yAxis?: ChartAxis;
@Field(() => [LineResult])
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment