AA-478: correctly refresh outline data when refreshing dates (#292)

This commit is contained in:
Michael Terry
2020-12-07 14:09:44 -05:00
committed by GitHub
parent bcd69f5836
commit 5f06d726f7
4 changed files with 9 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ function getStudioUrl(courseId, unitId) {
if (unitId) {
urlFull = `${urlBase}/container/${unitId}`;
} else if (courseId) {
urlFull = `{$urlBase}/course/${courseId}`;
urlFull = `${urlBase}/course/${courseId}`;
}
}
return urlFull;