Skip to content

Commit

Permalink
fix: correctly display buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Netail authored Apr 2, 2024
1 parent ed0d094 commit 1decc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const run = async (): Promise<void> => {
: [];

const rawButtons = getInput('buttons');
let buttons: Button[] = rawFields
let buttons: Button[] = rawButtons
? parseJSONInput<Button[]>('buttons', rawButtons)
: [];

Expand Down

0 comments on commit 1decc32

Please sign in to comment.