diff --git a/src/views/branding.js b/src/views/branding.js index 2ffba156e..c2597dbb3 100644 --- a/src/views/branding.js +++ b/src/views/branding.js @@ -196,7 +196,11 @@ angular.module('Application').controller('BrandingController', ['$scope', '$loca busy: false, refresh: function () { - $scope.footer.content = $scope.config.footer; + Client.getFooter(function (error, result) { + if (error) return console.error('Failed to get footer.', error); + + $scope.footer.content = result; + }); }, submit: function () {