From d3911b9e20ff2b0ef90d22fd2dd89a73c11bad85 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 6 Dec 2018 19:18:34 -0800 Subject: [PATCH] Fixes: Slack integrations page needs to ensure collections are loaded --- app/scenes/Settings/Slack.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/scenes/Settings/Slack.js b/app/scenes/Settings/Slack.js index 1d49f149..9f6bfc89 100644 --- a/app/scenes/Settings/Slack.js +++ b/app/scenes/Settings/Slack.js @@ -25,6 +25,7 @@ class Slack extends React.Component { componentDidMount() { this.error = getQueryVariable('error'); + this.props.collections.fetchPage({ limit: 100 }); this.props.integrations.fetchPage(); }