Fix phase runway list keys

This commit is contained in:
DCCONSTRUCTIONS 2026-06-30 00:21:28 +03:00
parent 8df64918f8
commit 0279b1de47
1 changed files with 4 additions and 4 deletions

View File

@ -9324,8 +9324,8 @@ export function App() {
<small>Что именно проверяем в выбранной фазе, без общей таблицы ключей.</small> <small>Что именно проверяем в выбранной фазе, без общей таблицы ключей.</small>
</div> </div>
<div className="market-brief-list"> <div className="market-brief-list">
{(selectedPhaseStrategy?.keywordMix ?? []).slice(0, 4).map((item) => ( {(selectedPhaseStrategy?.keywordMix ?? []).slice(0, 4).map((item, itemIndex) => (
<div key={`phase-keyword:${selectedStrategyPhaseId}:${item.label}`}> <div key={`phase-keyword:${selectedStrategyPhaseId}:${itemIndex}:${item.label}`}>
<span className={item.priority === "high" ? "collected" : "ready_for_collection"}> <span className={item.priority === "high" ? "collected" : "ready_for_collection"}>
{getSeoCompetitionTierLabel(item.competitionTier)} {getSeoCompetitionTierLabel(item.competitionTier)}
</span> </span>
@ -9333,8 +9333,8 @@ export function App() {
<small>{item.description}</small> <small>{item.description}</small>
</div> </div>
))} ))}
{(selectedPhaseStrategy?.landingPlan ?? []).slice(0, 4).map((item) => ( {(selectedPhaseStrategy?.landingPlan ?? []).slice(0, 4).map((item, itemIndex) => (
<div key={`phase-landing:${selectedStrategyPhaseId}:${item.title}:${item.targetPath ?? "none"}`}> <div key={`phase-landing:${selectedStrategyPhaseId}:${itemIndex}:${item.title}:${item.targetPath ?? "none"}`}>
<span>{getSeoOpportunityActionLabel(item.action)}</span> <span>{getSeoOpportunityActionLabel(item.action)}</span>
<strong>{item.targetPath ?? item.title}</strong> <strong>{item.targetPath ?? item.title}</strong>
<small>{item.reason}</small> <small>{item.reason}</small>