@luckydraw/cumulus 1.0.24 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/gateway/static/widget.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.25
|
|
4
|
+
|
|
5
|
+
Patch release. The `/select` overlay now lists the most recent messages first.
|
|
6
|
+
|
|
7
|
+
- **The list was in chronological order**, so the messages you're most likely to want to delete (recent ones) were at the bottom of a long scroll. It's reversed now — newest at the top, matching how the conversation itself reads. One-line change in the shared row renderer, so both the standalone `/chat` panel and the embedded widget are covered.
|
|
8
|
+
|
|
3
9
|
## v1.0.24
|
|
4
10
|
|
|
5
11
|
Patch release. The `/select` panel is now a compact overlay, matching `/revert`.
|
|
@@ -9101,7 +9101,8 @@
|
|
|
9101
9101
|
function renderSelectRows(body, messages, selectedIds, onToggle) {
|
|
9102
9102
|
body.innerHTML = '';
|
|
9103
9103
|
var any = false;
|
|
9104
|
-
messages.
|
|
9104
|
+
var ordered = messages.slice().reverse();
|
|
9105
|
+
ordered.forEach(function (msg) {
|
|
9105
9106
|
if (msg.role === 'thinking') return;
|
|
9106
9107
|
any = true;
|
|
9107
9108
|
|