From 618fb868f4b3000d8754fe41fa61138e36ac0f71 Mon Sep 17 00:00:00 2001 From: AlecM33 Date: Sat, 19 Aug 2023 13:13:40 -0400 Subject: [PATCH] change create button loading text --- client/src/modules/game_creation/GameCreationStepManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/modules/game_creation/GameCreationStepManager.js b/client/src/modules/game_creation/GameCreationStepManager.js index 51b612a..7dfb6b9 100644 --- a/client/src/modules/game_creation/GameCreationStepManager.js +++ b/client/src/modules/game_creation/GameCreationStepManager.js @@ -101,7 +101,7 @@ export class GameCreationStepManager { const button = document.getElementById('create-game'); button.removeEventListener('click', this.steps['5'].forwardHandler); button.classList.add('submitted'); - button.innerText = 'Creating...'; + button.innerText = '...'; const restoreButton = () => { button.innerText = 'Create'; button.classList.remove('submitted');