Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
release: 1.4.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ruibaby committed Aug 4, 2020
1 parent 3ceec99 commit 3e872b5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env.jsdelivr
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NODE_ENV=production
PUBLIC_PATH=https://cdn.jsdelivr.net/npm/[email protected].1/dist/
PUBLIC_PATH=https://cdn.jsdelivr.net/npm/[email protected].2/dist/
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "halo-admin",
"version": "1.4.0-beta.1",
"version": "1.4.0-beta.2",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta name="robots" content="noindex,nofllow" />
<meta name="generator" content="Halo 1.4.0-beta.1" />
<meta name="generator" content="Halo 1.4.0-beta.2" />
<link rel="icon" href="<%= BASE_URL %>logo.png" />
<title>Halo Dashboard</title>
<style>
Expand Down
5 changes: 3 additions & 2 deletions src/components/Tools/HeaderComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
<script>
import commentApi from '@/api/comment'
import marked from 'marked'
import { decodeHTML } from '@/utils/util'
export default {
name: 'HeaderComment',
Expand All @@ -114,13 +115,13 @@ export default {
computed: {
converttedPostComments() {
return this.postComments.map(comment => {
comment.content = marked(comment.content)
comment.content = marked(decodeHTML(comment.content))
return comment
})
},
converttedSheetComments() {
return this.sheetComments.map(comment => {
comment.content = marked(comment.content)
comment.content = marked(decodeHTML(comment.content))
return comment
})
}
Expand Down

0 comments on commit 3e872b5

Please sign in to comment.