vueless 0.0.736 → 0.0.737
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
package/ui.data-table/UTable.vue
CHANGED
|
@@ -357,7 +357,7 @@ function isShownDateDivider(rowIndex: number) {
|
|
|
357
357
|
const isPrevSameDate = prevItem?.rowDate === currentItem?.rowDate;
|
|
358
358
|
const isNextSameDate = nextItem?.rowDate === currentItem?.rowDate;
|
|
359
359
|
|
|
360
|
-
return isPrevSameDate &&
|
|
360
|
+
return !isPrevSameDate && isNextSameDate && props.dateDivider;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
function onClickRow(row: Row) {
|