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() {
15201520 }
15211521 const dot = document.createElement('div');
15221522 dot.id = 'sd_runpod_bar_dot';
15231523 dot.classList.add('sd_runpod_dot', 'sd_runpod_bar_dot', 'sd_runpod_red', 'interactable');
15241524 dot.title = 'RunPod pod';
15251525 dot.tabIndex = 0;
15261526 dot.addEventListener('click', () => runpodControl(runpodLastPhase === 'red' ? 'warmup' : 'shutdown'));