Stable Diffusion: fix invisible chat-bar pod dot (missing base class for color rules)

3d710c4ecae3dbfe73452198a003283a8140b5ba

permissionBRICK <40219477+permissionBRICK@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
public/scripts/extensions/stable-diffusion/index.js+1 -1
@@ -1520,7 +1520,7 @@ function ensureRunpodBarDot() {
1520 }1520 }
1521 const dot = document.createElement('div');1521 const dot = document.createElement('div');
1522 dot.id = 'sd_runpod_bar_dot';1522 dot.id = 'sd_runpod_bar_dot';
1523 dot.classList.add('sd_runpod_bar_dot', 'sd_runpod_red', 'interactable');1523 dot.classList.add('sd_runpod_dot', 'sd_runpod_bar_dot', 'sd_runpod_red', 'interactable');
1524 dot.title = 'RunPod pod';1524 dot.title = 'RunPod pod';
1525 dot.tabIndex = 0;1525 dot.tabIndex = 0;
1526 dot.addEventListener('click', () => runpodControl(runpodLastPhase === 'red' ? 'warmup' : 'shutdown'));1526 dot.addEventListener('click', () => runpodControl(runpodLastPhase === 'red' ? 'warmup' : 'shutdown'));