Commit 5d32331fa5b91090d4bb01d38a66da5e66054a4f

Authored by Neeraj Sharma
1 parent af4cbc7be1

fix student list by roll no.

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/pages/Students/students.vue
... ... @@ -902,7 +902,7 @@
902 902 :search="search"
903 903 >
904 904 <template slot="items" slot-scope="props">
905   - <td id="td" class="text-xs-center">{{ props.index}}</td>
  905 + <td id="td" class="text-xs-center">{{ props.item.rollNo}}</td>
906 906 <td id="td" class="text-xs-center">
907 907 <v-avatar>
908 908 <img :src="props.item.profilePicUrl" v-if="props.item.profilePicUrl" />
... ... @@ -1810,10 +1810,10 @@ export default {
1810 1810 ],
1811 1811 headers: [
1812 1812 {
1813   - text: "No",
  1813 + text: "Roll No.",
1814 1814 align: "center",
1815 1815 sortable: false,
1816   - value: "No"
  1816 + value: "rollNo"
1817 1817 },
1818 1818 {
1819 1819 text: "Profile Pic",
... ...