diff --git a/src/stores/HuntOptimizerStore.ts b/src/stores/HuntOptimizerStore.ts index b37b3cf8..31d345c7 100644 --- a/src/stores/HuntOptimizerStore.ts +++ b/src/stores/HuntOptimizerStore.ts @@ -41,8 +41,7 @@ export class OptimalMethod { // TODO: Prefer methods that don't split pan arms over methods that do. // For some reason this doesn't actually seem to be a problem, should probably investigate. // TODO: Show expected value or probability per item per method. -// Can be useful when you want one item "more" than the others. -// TODO: order of items in results table should match order in wanted table. +// Can be useful when deciding which item to hunt first. // TODO: boxes. class HuntOptimizerStore { @observable readonly wantedItems: IObservableArray = observable.array(); diff --git a/src/ui/hunt-optimizer/OptimizationResultComponent.less b/src/ui/hunt-optimizer/OptimizationResultComponent.less index 00e4930c..3010237d 100644 --- a/src/ui/hunt-optimizer/OptimizationResultComponent.less +++ b/src/ui/hunt-optimizer/OptimizationResultComponent.less @@ -11,6 +11,8 @@ .ho-OptimizationResultComponent-sid-col { display: inline-block; + overflow: hidden; + white-space: nowrap; height: 20px; margin: 0 3px; } \ No newline at end of file diff --git a/src/ui/hunt-optimizer/OptimizationResultComponent.tsx b/src/ui/hunt-optimizer/OptimizationResultComponent.tsx index c73af064..96ac8f1d 100644 --- a/src/ui/hunt-optimizer/OptimizationResultComponent.tsx +++ b/src/ui/hunt-optimizer/OptimizationResultComponent.tsx @@ -41,10 +41,11 @@ export class OptimizationResultComponent extends React.Component { cellRenderer: (result) => (
{result.sectionIds.map(sid => - + )}
), + tooltip: (result) => result.sectionIds.join(', '), }, { name: 'Time/Run',