Skip to content

Commit 85f3655

Browse files
Update docs
1 parent 8223782 commit 85f3655

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/documentation/components/examples/ClientTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function fetchClientData(drilldown = null) {
287287
user.child = {};
288288
user.child = {
289289
...tableDefaults,
290-
...props.colors,
290+
colors: null,
291291
drilldownKey: 'id',
292292
footers: footers.posts,
293293
headers: headers.posts,
@@ -314,7 +314,7 @@ function fetchClientData(drilldown = null) {
314314
post.child = {};
315315
post.child = {
316316
...tableDefaults,
317-
...props.colors,
317+
colors: null,
318318
drilldownKey: 'id',
319319
footers: footers.comments,
320320
headers: headers.comments,

src/documentation/components/examples/ServerTable.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ function getUserPosts(drilldown = null, updateCurrentLevel = false) {
330330
user.child = Object.assign({}, {
331331
...user.child,
332332
...{
333+
colors: null,
333334
drilldownKey: 'id',
334335
footers: footers.posts,
335336
headers: headers.posts,
@@ -388,6 +389,7 @@ function getPostComments(drilldown = null, updateCurrentLevel = false) {
388389
post.child = Object.assign({}, {
389390
...post.child,
390391
...{
392+
colors: null,
391393
drilldownKey: 'id',
392394
footers: footers.comments,
393395
headers: headers.comments,

0 commit comments

Comments
 (0)