From 45f3c201f9d2d4f1bff1bcd21f2eef5e75939717 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Wed, 3 Mar 2021 22:37:56 -0700 Subject: [PATCH] Move the eye icon to the config --- web/src/config.js | 4 ++++ web/src/store/index.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/config.js b/web/src/config.js index 2d7766c..c460e35 100644 --- a/web/src/config.js +++ b/web/src/config.js @@ -51,6 +51,10 @@ export const writer_name = `Spirit`; */ export const guesser_name = `Medium`; +/** + * The icon name for the Eye displayed on the main board. + */ +export const eye_icon = `eye.svg`; /** * The URI that socket IO tries to connect to for websocket communication when diff --git a/web/src/store/index.js b/web/src/store/index.js index 4c9d616..b9ef675 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -18,7 +18,7 @@ export default new Vuex.Store({ guesser_name: conf.guesser_name, guesser_card_button: `Ask Spirit`, - eye_icon: `eye.svg`, + eye_icon: conf.eye_icon, discard_hand_icon: `trash.svg`,