Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
<<<<<<< HEAD
0.1.0+2025.10.01T21.16.15.146Z.8b205d0c.master
=======
0.1.0+2026.04.23T20.03.53.409Z.887fd5d9.berickson.20260423.test.fix
>>>>>>> upstream/master
0.1.0+2026.06.08T14.57.09.3NZ.c99f98d.refactor.portfolio.diff
14 changes: 14 additions & 0 deletions modules/lo_event/lo_event/lo_assess/components/components.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* Public exports for the LO WebSocket connection layer.
*
* Provides hooks for subscribing to real-time Learning Observer data
* (useLOConnectionDataManager, useLOConnection), a timestamp display
* component (LOConnectionLastUpdated), and the connection status enum
* (LO_CONNECTION_STATUS).
*/

export { useLOConnectionDataManager } from "./utilities/useLOConnectionDataManager.jsx";
export { useLOConnection } from "./utilities/useLOConnection.jsx";
export { LOConnectionLastUpdated } from "./utilities/LOConnectionLastUpdated.jsx";

export { LO_CONNECTION_STATUS } from "./constants/LO_CONNECTION_STATUS.jsx"
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const LOConnectionLastUpdated = ({ message, connectionStatus, showText=fa
<div title={titles[connectionStatus]}>
<i className={icons[connectionStatus]} />
{showText ? <span className='mx-1'>{titles[connectionStatus]}</span> : ''}
<span className='ms-1'>{lastUpdatedMessage}</span>
<span className='ml-1'>{lastUpdatedMessage}</span>
</div>
);
};
Loading
Loading