this repo has no description
13
fork

Configure Feed

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

Table: Fix enum name for when DataList is slice

authored by

Grazfather and committed by
Tim Culverhouse
902b67be 7500af9a

+1 -1
+1 -1
src/widgets/Table.zig
··· 134 134 const data_ti = @typeInfo(DataListT); 135 135 switch (data_ti) { 136 136 .pointer => |ptr| { 137 - if (ptr.size != .Slice) return error.UnsupportedTableDataType; 137 + if (ptr.size != .slice) return error.UnsupportedTableDataType; 138 138 break :getData data_list; 139 139 }, 140 140 .@"struct" => {