askbot-dragon 0.7.29 → 0.7.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.29",
3
+ "version": "0.7.30",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -103,7 +103,7 @@ export default {
103
103
  },
104
104
  computed: {
105
105
  dataDetails() {
106
- let dataDetails = {};
106
+ let dataDetails = this.data;
107
107
  let reg = /<\/?.+?\/?>/g;
108
108
  dataDetails.description = this.data.description
109
109
  ? this.data.description.replace(reg, "")
@@ -100,7 +100,7 @@ export default {
100
100
  },
101
101
  computed: {
102
102
  dataDetails() {
103
- let dataDetails = {};
103
+ let dataDetails = this.data;
104
104
  let reg = /<\/?.+?\/?>/g;
105
105
  dataDetails.description = this.data.description
106
106
  ? this.data.description.replace(reg, "")