Skip to content

Commit

Permalink
Merge pull request #424 from seratch/pr-423-to-v2
Browse files Browse the repository at this point in the history
[v2] Fix #422 invalid fields in MultiUsersSelectAction
  • Loading branch information
seratch authored Mar 10, 2020
2 parents 711d3bd + 013120b commit 9c8d01d
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 9c8d01d

Please sign in to comment.