From 6cd46637de037ed21e176adcaa40a66884266139 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 22:44:25 +0000 Subject: [PATCH] Bug/CLARK-CLIENT-1G/fix-undefined-collection-access --- .../components/builder-navbar/builder-navbar.component.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/onion/learning-object-builder/components/builder-navbar/builder-navbar.component.html b/src/app/onion/learning-object-builder/components/builder-navbar/builder-navbar.component.html index 55f3eae9d..9f62cc927 100644 --- a/src/app/onion/learning-object-builder/components/builder-navbar/builder-navbar.component.html +++ b/src/app/onion/learning-object-builder/components/builder-navbar/builder-navbar.component.html @@ -35,17 +35,17 @@ *ngIf=" !['unreleased', 'rejected'].includes( learningObject?.status - ) && learningObject?.collection + ) && learningObject?.collection && collection " class="top__collection" tip="This learning object has been submitted to the {{ collection?.name }} collection." tipPosition="bottom"> - {{ collection.name }} + {{ collection?.name }}