Skip to content

Commit a0b055b

Browse files
authored
Merge pull request #3863 from steemit/fix_typro
fix typro
2 parents a7ac22e + 232e170 commit a0b055b

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/app/components/cards/MarkdownViewer.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ class MarkdownViewer extends Component {
9494
}
9595

9696
let renderedText = html ? text : renderer.render(text);
97-
console.log(renderedText);
9897
// If content isn't wrapped with an html element at this point, add it.
9998
if (!renderedText.indexOf('<html>') !== 0) {
10099
renderedText = '<html>' + renderedText + '</html>';
@@ -110,7 +109,6 @@ class MarkdownViewer extends Component {
110109
// Complete removal of javascript and other dangerous tags..
111110
// The must remain as close as possible to dangerouslySetInnerHTML
112111
let cleanText = renderedText;
113-
console.log(cleanText);
114112
if (this.props.allowDangerousHTML === true) {
115113
console.log('WARN\tMarkdownViewer rendering unsanitized content');
116114
} else {

src/app/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
"many_followers": "%(count)s Followers",
292292
"many_posts": "%(count)s Posts",
293293
"search_history": "History",
294-
"announcement": "Announcement"
294+
"announcement": "Announcements"
295295
},
296296
"navigation": {
297297
"about": "About Steemit, Inc.",

0 commit comments

Comments
 (0)