From ad0e23fc27682d3d3f435870a6fe7186ee2ad00e Mon Sep 17 00:00:00 2001
From: cagataycivici
Date: Tue, 1 Oct 2019 15:44:09 +0300
Subject: [PATCH] Lint errors
---
gulpfile.js | 1 -
src/views/treetable/TreeTableDoc.vue | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/gulpfile.js b/gulpfile.js
index 54465d030..12999c27d 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -4,7 +4,6 @@ var gulp = require('gulp'),
concat = require('gulp-concat'),
uglifycss = require('gulp-uglifycss'),
rename = require('gulp-rename'),
- del = require('del'),
flatten = require('gulp-flatten');
gulp.task('copy-components', function() {
diff --git a/src/views/treetable/TreeTableDoc.vue b/src/views/treetable/TreeTableDoc.vue
index a1a0e8ba7..7b69d7b0d 100644
--- a/src/views/treetable/TreeTableDoc.vue
+++ b/src/views/treetable/TreeTableDoc.vue
@@ -1009,7 +1009,7 @@ export default {
In addition lazy loading of root level nodes is implemented by handling pagination and sorting using page and sort events by making a remote query using the information
passed to the events such as first offset, number of rows and sort field for ordering. Filtering is handled differently as filter elements are defined using templates, use
the event you prefer on your form elements such as input, change, blur to make a remote call by passing the filters property to update the displayed data. Note that,
- in lazy filtering, totalRecords should also be updated to align the data with the paginator.
.
+ in lazy filtering, totalRecords should also be updated to align the data with the paginator..
Example below uses an in memory collection to mimic a lazy loading scenario with timeouts.