Skip to content

Commit 32a853f

Browse files
committed
fixing build
1 parent 6c65f8a commit 32a853f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/content-type/diagram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default class DiagramCommand extends Command {
8585
outputFileName: outputPath,
8686
outputFileType: flags.type,
8787
style: {
88-
orientation: flags.direction === 'portrait' ? DiagramOrientation.Portrait : DiagramOrientation.Landscape
88+
orientation: flags.direction === 'portrait' ? DiagramOrientation.Portrait : DiagramOrientation.Landscape,
8989
},
9090
}
9191

src/core/content-type/diagram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export enum DiagramOrientation {
8383
}
8484

8585
export interface DiagramStyleOptions {
86-
orientation: DiagramOrientation
86+
orientation: DiagramOrientation;
8787
}
8888

8989
export async function createDiagram(options: CreateDiagramOptions): Promise<CreateDiagramResults> {

0 commit comments

Comments
 (0)