Skip to content

Commit

Permalink
Merge pull request #423 from seratch/issue-422
Browse files Browse the repository at this point in the history
Fix #422 invalid fields in MultiUsersSelectAction
  • Loading branch information
stevengill authored Mar 9, 2020
2 parents e2d2b88 + 7d538b0 commit 0ca1d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/actions/block-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export interface UsersSelectAction extends BasicElementAction<'users_select'> {
* An action from a multi select menu with user list
*/
export interface MultiUsersSelectAction extends BasicElementAction<'multi_users_select'> {
selected_user: [string];
initial_user?: [string];
selected_users: [string];
initial_users?: [string];
placeholder?: PlainTextElement;
confirm?: Confirmation;
}
Expand Down

0 comments on commit 0ca1d5c

Please sign in to comment.