diff --git a/app/jsx/blueprint_courses/components/CourseSidebar.js b/app/jsx/blueprint_courses/components/CourseSidebar.js
index b1366d0462d..0f16aad1484 100644
--- a/app/jsx/blueprint_courses/components/CourseSidebar.js
+++ b/app/jsx/blueprint_courses/components/CourseSidebar.js
@@ -16,7 +16,7 @@
* with this program. If not, see .
*/
-import I18n from 'i18n!blueprint_settings'
+import I18n from 'i18n!blueprint_course_sidebar'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
@@ -27,6 +27,7 @@ import Button from 'instructure-ui/lib/components/Button'
import Typography from 'instructure-ui/lib/components/Typography'
import Spinner from 'instructure-ui/lib/components/Spinner'
import Tooltip from 'instructure-ui/lib/components/Tooltip'
+import PresentationContent from 'instructure-ui/lib/components/PresentationContent'
import propTypes from '../propTypes'
import actions from '../actions'
@@ -254,6 +255,7 @@ export default class CourseSidebar extends Component {
return (
-
{this.props.unsyncedChanges.length}
+
+ {this.props.unsyncedChanges.length}
+
)
@@ -273,12 +277,22 @@ export default class CourseSidebar extends Component {
maybeRenderAssociations () {
if (!this.props.canManageCourse) return null
const isSyncing = MigrationStates.isLoadingState(this.props.migrationStatus) || this.props.isLoadingBeginMigration
+ const length = this.props.associations.length
const button = (
-
)