Session names

This commit is contained in:
Shantur Rathore
2025-10-30 00:38:52 +00:00
parent f95b61fc5d
commit c854ee0659

View File

@@ -219,7 +219,7 @@ const SessionList: Component<SessionListProps> = (props) => {
<div class="session-list flex-1 overflow-y-auto"> <div class="session-list flex-1 overflow-y-auto">
<div class="session-section"> <div class="session-section">
<div class="session-section-header px-3 py-2 text-xs font-semibold text-primary/70 uppercase tracking-wide"> <div class="session-section-header px-3 py-2 text-xs font-semibold text-primary/70 uppercase tracking-wide">
Parent & Info User Session & Info
</div> </div>
<For each={sessionSections().parentItems}> <For each={sessionSections().parentItems}>
{(item) => ( {(item) => (
@@ -262,7 +262,7 @@ const SessionList: Component<SessionListProps> = (props) => {
<Show when={sessionSections().childItems.length > 0}> <Show when={sessionSections().childItems.length > 0}>
<div class="session-section"> <div class="session-section">
<div class="session-section-header px-3 py-2 text-xs font-semibold text-primary/70 uppercase tracking-wide"> <div class="session-section-header px-3 py-2 text-xs font-semibold text-primary/70 uppercase tracking-wide">
Child Sessions Agent Sessions
</div> </div>
<For each={sessionSections().childItems}> <For each={sessionSections().childItems}>
{(item) => ( {(item) => (