[READ-ONLY] Mirror of https://github.com/graphieros/vue-data-ui. An open source user-empowering data visualization Vue 3 components library for eloquent data storytelling vue-data-ui.graphieros.com/
charts components-library dashboard data-storytelling data-visualization donut gauge heatmap quadrant radar rating-stars scatter screenshot skeleton-loader sparkline table vue-data-ui vue3 vuejs vuejs3
3

Configure Feed

Select the types of activity you want to include in your feed.

fix(DataTable): guard against potential undfined th & td

graphieros (Apr 25, 2026, 11:10 AM +0200) 1fd17e3f 27f34076

+2 -2
+2 -2
src/atoms/DataTable.vue
··· 101 101 <svg 102 102 height="12" 103 103 width="12" 104 - v-if="th.color" 104 + v-if="th?.color" 105 105 viewBox="0 0 20 20" 106 106 style="background: none" 107 107 > ··· 158 158 <svg 159 159 height="12" 160 160 width="12" 161 - v-if="td.color" 161 + v-if="td?.color" 162 162 viewBox="0 0 20 20" 163 163 style="background: none; overflow: visible" 164 164 >