diff --git a/atlassian-connect-descriptor.cabal b/atlassian-connect-descriptor.cabal
--- a/atlassian-connect-descriptor.cabal
+++ b/atlassian-connect-descriptor.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.4.9.0
+version:             0.4.10.0
 
 -- A short (one-line) description of the package.
 synopsis:            Code that helps you create a valid Atlassian Connect Descriptor.
diff --git a/src/Data/Connect/Modules.hs b/src/Data/Connect/Modules.hs
--- a/src/Data/Connect/Modules.hs
+++ b/src/Data/Connect/Modules.hs
@@ -419,12 +419,13 @@
 -- | This module adds a content button to the context area of the new Jira issue view.
 -- Content can have an icon, tooltip, and target.
 data JIRAIssueContent = JIRAIssueContent
-   { jicKey             :: T.Text -- ^ The add-on unique key for this module.
-   , jicName            :: I18nText -- ^ The name of this JIRA Issue Content.
-   , jicTooltip         :: I18nText -- ^ The tooltip for this JIRA Issue Content.
-   , jicIcon            :: IconDetails -- ^ The icon for this JIRA Issue Content.
-   , jicTarget          :: JIRAIssueContentTarget -- ^ Specifies the target action when clicking on the content.
-   , jicConditions      :: [Condition] -- ^ The conditions under which the content will be shown.
+   { jicKey                      :: T.Text -- ^ The add-on unique key for this module.
+   , jicName                     :: I18nText -- ^ The name of this JIRA Issue Content.
+   , jicTooltip                  :: I18nText -- ^ The tooltip for this JIRA Issue Content.
+   , jicIcon                     :: IconDetails -- ^ The icon for this JIRA Issue Content.
+   , jicTarget                   :: JIRAIssueContentTarget -- ^ Specifies the target action when clicking on the content.
+   , jicConditions               :: [Condition] -- ^ The conditions under which the content could be shown.
+   , jicContentPresentConditions :: [Condition] -- ^ The conditions under which the content will always be shown.
    } deriving (Show, Generic)
 
 instance ToJSON JIRAIssueContent where
diff --git a/tests/ModulesTest.hs b/tests/ModulesTest.hs
--- a/tests/ModulesTest.hs
+++ b/tests/ModulesTest.hs
@@ -57,6 +57,7 @@
                     }
                 , jicTarget = JIRAIssueContentTargetWebPanel "/panel_url"
                 , jicConditions = []
+                , jicContentPresentConditions = []
                 }
     let jv = toJSON jic
     isObject jv @? "Expected the issue glance to be an object"
