Commit 874e8a70ee8bb677aa85df46427170e380fb7dfa
1 parent
82576b8a88
Exists in
master
and in
1 other branch
marks btn visible only if datat
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
src/pages/Mark/mark.vue
... | ... | @@ -300,7 +300,7 @@ |
300 | 300 | >Your search for "{{ search }}" found no results.</v-alert> |
301 | 301 | </v-data-table> |
302 | 302 | </v-card> |
303 | - <v-layout class="mt-2"> | |
303 | + <v-layout class="mt-2" v-if="getStudentData.length > 0"> | |
304 | 304 | <v-flex xs12 sm12> |
305 | 305 | <v-layout> |
306 | 306 | <v-flex xs12> |
... | ... | @@ -528,6 +528,7 @@ export default { |
528 | 528 | this.getStudentData = response.data.data; |
529 | 529 | // this.showLoader = false; |
530 | 530 | this.showLoader = true; |
531 | + console.log("studentData - ",this.getStudentData) | |
531 | 532 | http() |
532 | 533 | .get("/getMarkDistributionsList", { |
533 | 534 | params: this.addMark, | ... | ... |