Skip to content

Commit

Permalink
Tie rendering inputs to meta config
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Dec 1, 2023
1 parent 4a1293a commit 8c6ab3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ export class ShortcutPreview {
containers = [];
containers.push(container);

renderInputs(this.data);
if (this.meta) {
renderInputs(this.data);
}

if (this.data.WFWorkflowActions && this.data.WFWorkflowActions.length !== 0) {
renderShortcut(this.data.WFWorkflowActions);
Expand Down

0 comments on commit 8c6ab3d

Please sign in to comment.