From 8007fa6f0fbdf6e4516c5d325e670c1e16b34199 Mon Sep 17 00:00:00 2001 From: Peter Zignego Date: Tue, 2 Aug 2016 23:24:12 -0400 Subject: [PATCH] Include style in Action JSON dictionary --- SlackKit/Sources/Action.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/SlackKit/Sources/Action.swift b/SlackKit/Sources/Action.swift index 6fe2f34..8435ab2 100644 --- a/SlackKit/Sources/Action.swift +++ b/SlackKit/Sources/Action.swift @@ -54,6 +54,7 @@ public struct Action { dict["text"] = text dict["type"] = type dict["value"] = value + dict["style"] = style?.rawValue dict["confirm"] = confirm?.dictionary() return dict }