Skip to content

Commit b8fc057

Browse files
committed
remove _default style which caused buttons to go grey
1 parent 8c005d1 commit b8fc057

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/allbegray/slack/type/Action.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class Action {
1010

1111
enum Style {
12-
_default, primary, danger;
12+
primary, danger
1313
}
1414

1515
public Action() {
@@ -32,7 +32,7 @@ public Action(String name, String text, String type) {
3232
protected String text;
3333
protected String type;
3434
protected String value;
35-
protected Style style = Style._default;
35+
protected Style style;
3636
protected Confirm confirm;
3737

3838
public String getName() {

0 commit comments

Comments
 (0)