Skip to content

Commit 4b51e7e

Browse files
Alex TharpAlex Tharp
authored andcommitted
Merge pull request #113 from cbdr/bugfixes-cfe
We should not be slugifying SEO title
2 parents 7800f63 + c848279 commit 4b51e7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/assets/javascripts/controllers/posts/edit.seo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular.module('cortex.controllers.posts.edit.seo', [
99
if ($scope.postForm.seo_title.$dirty && $scope.postForm.seo_title) {
1010
return;
1111
}
12-
$scope.data.post.seo_title = $filter('slugify')($scope.data.post.title);
12+
$scope.data.post.seo_title = $scope.data.post.title;
1313
});
1414

1515
// Ditto SEO Description

0 commit comments

Comments
 (0)