diff --git a/.github/workflows/frontend.yaml b/.github/workflows/frontend.yaml index 3cbca5ced..926260980 100644 --- a/.github/workflows/frontend.yaml +++ b/.github/workflows/frontend.yaml @@ -148,7 +148,7 @@ jobs: sed -i "s/enterpriseEditionLicense: \"\"/enterpriseEditionLicense: \"${{ secrets.EE_LICENSE_KEY }}\"/g" vars.yaml # Update changed image tag - sed -i "/frontend/{n;n;s/.*/ tag: ${IMAGE_TAG}/}" /tmp/image_override.yaml + sed -i "/frontend/{n;n;n;s/.*/ tag: ${IMAGE_TAG}/}" /tmp/image_override.yaml cat /tmp/image_override.yaml # Deploy command diff --git a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx index 0fe4b0b9a..bc4bb9f8a 100644 --- a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx +++ b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx @@ -124,46 +124,45 @@ function LiveSessionList(props: Props) { props.applyFilter({ order: state })} sortOrder={filter.order} /> - - - See how to {'enable Assist'} and ensure you're using tracker-assist v3.5.0 or higher. - - } - image={} - show={ !loading && list.size === 0} - > -
- - {list.map(session => ( - <> - -
- - ))} + + + See how to {'enable Assist'} and ensure you're using tracker-assist v3.5.0 or higher. + + } + image={} + show={ !loading && list.size === 0} + > +
+ + {list.map(session => ( + <> + +
+ + ))} -
- props.updateCurrentPage(page)} - limit={PER_PAGE} - /> -
- - -
- +
+ props.updateCurrentPage(page)} + limit={PER_PAGE} + /> +
+
+
+
) }