| commit | 7208bb4b7fbdfec4a86843020eb8d384ac9889e7 | [log] [tgz] |
|---|---|---|
| author | Josh Bleecher Snyder <josharian@gmail.com> | Fri Jul 18 00:44:11 2025 +0000 |
| committer | Josh Bleecher Snyder <josharian@gmail.com> | Thu Jul 17 18:04:13 2025 -0700 |
| tree | b5b577fdde5d46c00d624595ddba49209701e7a4 | |
| parent | 254c49faa2537d79e1394c4109f48a6e0990967c [diff] [blame] |
webui: add tooltips for upper-right corner buttons Fixes https://github.com/boldsoftware/sketch/issues/160 Co-Authored-By: sketch <hello@sketch.dev> Change-ID: s7884db8812a87864k
diff --git a/webui/src/web-components/sketch-call-status.ts b/webui/src/web-components/sketch-call-status.ts index 1af2302..d9e14b1 100644 --- a/webui/src/web-components/sketch-call-status.ts +++ b/webui/src/web-components/sketch-call-status.ts
@@ -97,6 +97,11 @@ : !this.isIdle ? "bg-orange-50 text-orange-600" : "bg-green-50 text-green-700"}" + title="${this.isDisconnected + ? "Connection lost or container shut down" + : !this.isIdle + ? "Agent is processing" + : "Agent is idle and ready for input"}" > ${statusText} </div>