From c739269777b4d982597bb8a1b59b98b13a341ce3 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Wed, 13 Dec 2017 10:14:26 +0000 Subject: [PATCH] Update widget title on edit. --- src/components/views/elements/AppTile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js index 761dada55d..0d67b4c814 100644 --- a/src/components/views/elements/AppTile.js +++ b/src/components/views/elements/AppTile.js @@ -226,6 +226,10 @@ export default React.createClass({ this.setState({ loading: true, }); + } else if (nextProps.widgetPageTitle !== this.props.widgetPageTitle) { + this.setState({ + widgetPageTitle: nextProps.widgetPageTitle, + }); } },