Commit 37f413ce84009268703055c2cd45fae13666c456
1 parent
0f877e866e
Exists in
admin
fixed select slide value
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/components/Profile.vue
... | ... | @@ -370,7 +370,7 @@ |
370 | 370 | > |
371 | 371 | <option value="null">Select Insight</option> |
372 | 372 | <option v-for="(insight, i) in insightList" :key="i" :value="insight._id"> |
373 | - {{ insight._id }} | |
373 | + {{ insight.title }} | |
374 | 374 | </option> |
375 | 375 | </select> |
376 | 376 | </div> |
... | ... | @@ -627,7 +627,7 @@ export default { |
627 | 627 | |
628 | 628 | console.log("data",data); |
629 | 629 | data.insightId = this.insightId; |
630 | - this.insightId = null; | |
630 | + // this.insightId = null; | |
631 | 631 | }, |
632 | 632 | |
633 | 633 | removeSlide(i) { | ... | ... |