File tree Expand file tree Collapse file tree
panel/src/pages/PlayerDropsPage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import DrilldownOverviewSubcard from "./DrilldownOverviewSubcard";
1111import { DisplayLodType , DrilldownRangeSelectionType } from "./PlayerDropsPage" ;
1212import InlineCode from "@/components/InlineCode" ;
1313import DrilldownResourcesSubcard from "./DrilldownResourcesSubcard" ;
14+ import { DynamicNewItem } from "@/components/DynamicNewBadge" ;
1415
1516
1617export function DrilldownCardLoading ( { isError } : { isError ?: boolean } ) {
@@ -113,6 +114,9 @@ const DrilldownCardInner = function DrilldownCard({
113114 < div className = "flex items-center space-x-2" >
114115 < div className = 'hidden xs:block' > < ShapesIcon className = "size-4" /> </ div >
115116 < h2 className = "font-mono text-sm" > Environment Changes</ h2 >
117+ < DynamicNewItem featName = "playerDropsEnvChangesReversed" durationDays = { 14 } >
118+ < span className = "text-2xs text-warning-inline/80" > Note: This list now shows the most recent changes first.</ span >
119+ </ DynamicNewItem >
116120 </ div >
117121 </ div >
118122 < DrilldownChangesSubcard changes = { windowData . changes } />
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export default function DrilldownChangesSubcard({ changes }: DrilldownChangesSub
107107 } ;
108108
109109 const sortedChanges = useMemo ( ( ) => {
110- return changes . sort ( ( a , b ) => a . ts - b . ts ) ;
110+ return changes . sort ( ( a , b ) => b . ts - a . ts ) ;
111111 } , [ changes ] ) ;
112112
113113 if ( ! changes . length ) {
You can’t perform that action at this time.
0 commit comments