From 1e1f873717c4fe6ddcf66efdddebb59cff8de826 Mon Sep 17 00:00:00 2001 From: Alexis Grow Date: Mon, 30 Nov 2020 15:59:33 -0700 Subject: [PATCH] Rename foreground to text in Overlay config --- static/js/overlay/parent-frame/models/overlayconfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/overlay/parent-frame/models/overlayconfig.js b/static/js/overlay/parent-frame/models/overlayconfig.js index 733255f1a..58e1348cf 100644 --- a/static/js/overlay/parent-frame/models/overlayconfig.js +++ b/static/js/overlay/parent-frame/models/overlayconfig.js @@ -88,7 +88,7 @@ export default class OverlayConfig { * The foreground color of the button, accepts hex or rgb. * @type {String} */ - foregroundColor: config.button.color.foreground || '#FFFFFF', + foregroundColor: config.button.color.text || '#FFFFFF', }; /** @@ -127,7 +127,7 @@ export default class OverlayConfig { * The foreground color of the panel, accepts hex or rgb. * @type {String} */ - foregroundColor: config.panel.color.foreground || '#FFFFFF', + foregroundColor: config.panel.color.text || '#FFFFFF', }; } } \ No newline at end of file