Skip to content

Commit 5ea97c3

Browse files
Update key's to use empty string to prevent errors when null header bug is present in framework
1 parent 48ac312 commit 5ea97c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/documentation/components/examples/ClientTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const headers = {
9494
comments: [
9595
{
9696
align: 'start',
97-
key: null,
97+
key: '',
9898
title: '',
9999
width: 110,
100100
},
@@ -184,7 +184,7 @@ const footers = {
184184
comments: [
185185
{
186186
align: 'start',
187-
key: null,
187+
key: '',
188188
title: '',
189189
width: 100,
190190
},

src/documentation/components/examples/ServerTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const headers = {
9393
comments: [
9494
{
9595
align: 'start',
96-
key: null,
96+
key: '',
9797
title: '',
9898
width: 110,
9999
},
@@ -183,7 +183,7 @@ const footers = {
183183
comments: [
184184
{
185185
align: 'start',
186-
key: null,
186+
key: '',
187187
title: '',
188188
width: 100,
189189
},

0 commit comments

Comments
 (0)