Skip to content

Commit

Permalink
Fix #422 invalid fields in MultiUsersSelectAction
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Mar 8, 2020
1 parent e2d2b88 commit 7d538b0
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 7d538b0

Please sign in to comment.