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`,