Remove unncessary closing tag

pull/104/head
cagataycivici 2019-11-18 11:10:52 +03:00
parent db0a5d958d
commit d7ceaea97b
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
<template> <template>
<tfoot class="p-datatable-tfoot" v-if="hasFooter"> <tfoot class="p-datatable-tfoot" v-if="hasFooter">
<tr v-if="!columnGroup">> <tr v-if="!columnGroup">
<td v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.footerStyle" :class="col.footerClass" <td v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.footerStyle" :class="col.footerClass"
:colspan="col.colspan" :rowspan="col.rowspan"> :colspan="col.colspan" :rowspan="col.rowspan">
<DTColumnSlot :column="col" type="footer" v-if="col.$scopedSlots.footer" /> <DTColumnSlot :column="col" type="footer" v-if="col.$scopedSlots.footer" />
{{col.footer}} {{col.footer}}
</td> </td>
</tr> </tr>
<template v-else> <template v-else>
<tr v-for="(row,i) of columnGroup.rows" :key="i"> <tr v-for="(row,i) of columnGroup.rows" :key="i">
<td v-for="(col,i) of row.columns" :key="col.columnKey||col.field||i" :style="col.footerStyle" :class="col.footerClass" <td v-for="(col,i) of row.columns" :key="col.columnKey||col.field||i" :style="col.footerStyle" :class="col.footerClass"
:colspan="col.colspan" :rowspan="col.rowspan"> :colspan="col.colspan" :rowspan="col.rowspan">