diff --git a/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss b/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss
index 79e0a7a08f5a..8bd18361d183 100644
--- a/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss
+++ b/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss
@@ -57,5 +57,10 @@
@include rtl {
@include transform(rotateY(180deg));
}
+
+ // Hide a trailing separator.
+ &:last-child {
+ display: none;
+ }
}
}
diff --git a/lms/templates/courseware/courseware.html b/lms/templates/courseware/courseware.html
index 2e53b5611aec..e49f649728b8 100644
--- a/lms/templates/courseware/courseware.html
+++ b/lms/templates/courseware/courseware.html
@@ -195,7 +195,9 @@
% endif
- ${sequence_title}
+ % if sequence_title:
+ ${sequence_title}
+ % endif