File tree Expand file tree Collapse file tree
common/src/main/java/com/djrapitops/plan/delivery/rendering/html
react/dashboard/src/components/extensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ public class Contributors {
117117 new Contributor ("ZhangYuheng" , CODE ),
118118 new Contributor ("Zaemong" , LANG ),
119119 new Contributor ("TWJohnJohn20116" , LANG ),
120- new Contributor ("YannicHock" , CODE )
120+ new Contributor ("YannicHock" , CODE ),
121+ new Contributor ("SaolGhra" , CODE )
121122 };
122123
123124 private Contributors () {
Original file line number Diff line number Diff line change @@ -44,7 +44,10 @@ const ExtensionDataTable = ({table}) => {
4444 order : [ [ 1 , "desc" ] ]
4545 }
4646 const rowKeyFunction = ( row , column ) => {
47- return JSON . stringify ( Object . entries ( row ) . filter ( e => e [ 0 ] . includes ( 'Value' ) ) ) + "-" + JSON . stringify ( column ?. data ?. _ ) ;
47+ const valueFields = Object . entries ( row )
48+ . filter ( e => typeof e [ 0 ] === 'string' && e [ 0 ] . includes ( 'Value' ) )
49+ . map ( e => String ( e [ 1 ] ) ) ;
50+ return valueFields . join ( '-' ) + '-' + String ( column ?. data ?. _ ) ;
4851 }
4952
5053 return (
You can’t perform that action at this time.
0 commit comments