We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c65f8a commit 32a853fCopy full SHA for 32a853f
2 files changed
src/commands/content-type/diagram.ts
@@ -85,7 +85,7 @@ export default class DiagramCommand extends Command {
85
outputFileName: outputPath,
86
outputFileType: flags.type,
87
style: {
88
- orientation: flags.direction === 'portrait' ? DiagramOrientation.Portrait : DiagramOrientation.Landscape
+ orientation: flags.direction === 'portrait' ? DiagramOrientation.Portrait : DiagramOrientation.Landscape,
89
},
90
}
91
src/core/content-type/diagram.ts
@@ -83,7 +83,7 @@ export enum DiagramOrientation {
83
84
export interface DiagramStyleOptions {
- orientation: DiagramOrientation
+ orientation: DiagramOrientation;
export async function createDiagram(options: CreateDiagramOptions): Promise<CreateDiagramResults> {
0 commit comments