diff --git a/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss b/common/static/sass/edx-pattern-library-shims/_breadcrumbs.scss
index 79e0a7a08f..8bd18361d1 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 5cba0fcd49..c1525f2063 100644
--- a/lms/templates/courseware/courseware.html
+++ b/lms/templates/courseware/courseware.html
@@ -237,7 +237,9 @@ ${HTML(fragment.foot_html())}
% endif
- ${sequence_title}
+ % if sequence_title:
+ ${sequence_title}
+ % endif