From 506329d3de3c771d154ae4a638a3d64bbf3c6b40 Mon Sep 17 00:00:00 2001 From: Jeff Astor Date: Fri, 4 Dec 2020 14:32:58 -0700 Subject: [PATCH] [Docs] Fix typo in table mobile options code example (#4339) --- src-docs/src/views/tables/mobile/mobile_section.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-docs/src/views/tables/mobile/mobile_section.js b/src-docs/src/views/tables/mobile/mobile_section.js index e48c3734c24..689549174da 100644 --- a/src-docs/src/views/tables/mobile/mobile_section.js +++ b/src-docs/src/views/tables/mobile/mobile_section.js @@ -16,7 +16,7 @@ const exampleItem = `{ mobileOptions: { render: (item) => ({item.firstName} {item.lastName}), // Custom renderer for mobile view only header: false, // Won't show inline header in mobile view - width: '100%' // Applies a specific width + width: '100%', // Applies a specific width enlarge: true, // Increase text size compared to rest of cells truncateText: false, // Only works if a 'render()' is also provided }