Skip to content

Commit

Permalink
Fixes #35878 - CV and LCE name show empty strings in RepoSets banner (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz committed Dec 16, 2022
1 parent fa2e548 commit f07230e
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -185,9 +185,11 @@ const RepositorySetsTab = () => {
const {
contentViewDefault,
lifecycleEnvironmentLibrary,
contentViewName,
lifecycleEnvironmentName,
contentView,
lifecycleEnvironment,
} = contentFacet;
const { name: contentViewName } = contentView ?? {};
const { name: lifecycleEnvironmentName } = lifecycleEnvironment ?? {};
const nonLibraryHost = contentViewDefault === false ||
lifecycleEnvironmentLibrary === false;
const [isBulkActionOpen, setIsBulkActionOpen] = useState(false);
Expand Down

0 comments on commit f07230e

Please sign in to comment.