app-ui

created pr with 46.1 on 2025-02-06T15:20:57Z · by c8ef7d19
cmds
checkout latest patchset:
ssh pr.pico.sh print 46 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 46.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 46

Patchset 46.1 on 2025-02-06T15:20:57Z · commit 9bac81a

Install react-use-websocket
Eric Abruzzese 2025-01-15T14:28:15Z
Update the diagnostics create form to navigate to the details page with query parameters instead of POSTing to the external service
Eric Abruzzese 2025-01-15T14:29:34Z
Collect events on the diagnostic details page and construct a dashboard state
Eric Abruzzese 2025-01-15T14:30:03Z
Formatting and cleanup
Eric Abruzzese 2025-01-15T14:34:02Z
Show dashboard messages, resources, operations, and plots
Michael Peterson 2025-01-28T20:23:45Z
Support async plot annotations
Eric Abruzzese 2025-01-31T17:53:30Z
Fix an issue that would cause a page crash if datasets weren't perfectly aligned
Eric Abruzzese 2025-02-03T20:19:05Z
Add VITE_APTIBLE_AI_URL to .env.example
Eric Abruzzese 2025-02-04T16:30:13Z
Update VITE_APTIBLE_AI_URL references to point to Hotshot
Eric Abruzzese 2025-02-05T17:50:02Z
Update the analysis using PlotAnnotated events
Eric Abruzzese 2025-02-05T17:51:11Z
Install react-use-websocket
Eric Abruzzese 2025-01-15T14:28:15Z
Update the diagnostics create form to navigate to the details page with query parameters instead of POSTing to the external service
Eric Abruzzese 2025-01-15T14:29:34Z
Collect events on the diagnostic details page and construct a dashboard state
Eric Abruzzese 2025-01-15T14:30:03Z
Formatting and cleanup
Eric Abruzzese 2025-01-15T14:34:02Z
Show dashboard messages, resources, operations, and plots
Michael Peterson 2025-01-28T20:23:45Z
Support async plot annotations
Eric Abruzzese 2025-01-31T17:53:30Z
Fix an issue that would cause a page crash if datasets weren't perfectly aligned
Eric Abruzzese 2025-02-03T20:19:05Z
Add VITE_APTIBLE_AI_URL to .env.example
Eric Abruzzese 2025-02-04T16:30:13Z
Update VITE_APTIBLE_AI_URL references to point to Hotshot
Eric Abruzzese 2025-02-05T17:50:02Z
Update the analysis using PlotAnnotated events
Eric Abruzzese 2025-02-05T17:51:11Z
Refactor charts
Michael Peterson 2025-02-05T18:25:59Z
Refactor OperationsTimeline, chart hover state
Michael Peterson 2025-02-05T18:42:20Z
Extract types into aptible-ai/index, useDashboard hook
Michael Peterson 2025-02-05T19:21:56Z
Fix a linter error
Eric Abruzzese 2025-02-05T19:40:48Z
Fix linter errors
Eric Abruzzese 2025-02-05T19:50:07Z
Install react-use-websocket
Eric Abruzzese 2025-01-15T14:28:15Z
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (2 files skipped: unsupported file type)
+1 -0 package.json #
......@@ -58,6 +58,7 @@
5858 "react-dom": "^18.3.1",
5959 "react-router": "^7.0.2",
6060 "react-router-dom": "^7.0.2",
61+ "react-use-websocket": "^4.11.1",
6162 "starfx": "^0.13.4",
6263 "tailwindcss": "^3.4.16",
6364 "typescript": "^5.7.2",
+8 -0 yarn.lock #
......@@ -2067,6 +2067,7 @@ __metadata:
20672067 react-dom: ^18.3.1
20682068 react-router: ^7.0.2
20692069 react-router-dom: ^7.0.2
2070+ react-use-websocket: ^4.11.1
20702071 starfx: ^0.13.4
20712072 tailwindcss: ^3.4.16
20722073 typescript: ^5.7.2
......@@ -4946,6 +4947,13 @@ __metadata:
49464947 languageName: node
49474948 linkType: hard
49484949
4950+"react-use-websocket@npm:^4.11.1":
4951+ version: 4.11.1
4952+ resolution: "react-use-websocket@npm:4.11.1"
4953+ checksum: 8104c2a5c1e5cd32a152a1f03cfa7786a629e72e997fd5ee5b9be4f8fdeef75913e2af2c8689b0aaae37087ba5cf2be3fb69d2bb3282e3a92c8f3f2f88fc7709
4954+ languageName: node
4955+ linkType: hard
4956+
49494957 "react@npm:^18.2.0, react@npm:^18.3.1":
49504958 version: 18.3.1
49514959 resolution: "react@npm:18.3.1"
Back to top