Skip to content

Commit

Permalink
add spreadsheet notice
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Dec 26, 2024
1 parent 7a689ec commit b3130eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ export abstract class IndividualSimUI<SpecType extends Spec> extends SimUI {
spec: player.spec,
knownIssues: config.knownIssues,
simStatus: simLaunchStatuses[player.spec],
noticeText: (
<span>Check out the <a href='https://docs.google.com/spreadsheets/d/e/2PACX-1vSv0YUDDBJMTZVbN-kS0XbpZcyfDHakebXLKcKwAzgs3MYqHBbmr92SkaPPQZ2tEDAgNcmuYscgodtV/pubhtml' target='_blank' rel='noreferrer'>WoWSims Phase 6 Sim DPS Spreadsheet</a> for up-to-date community builds!</span>
),
});
this.rootElem.classList.add('individual-sim-ui');
this.player = player;
Expand Down
2 changes: 1 addition & 1 deletion ui/core/sim_ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export interface SimUIConfig {
spec: Spec | null;
simStatus: SimStatus;
knownIssues?: Array<string>;
noticeText?: string;
noticeText?: JSX.Element;
}

// Shared UI for all individual sims and the raid sim.
Expand Down

0 comments on commit b3130eb

Please sign in to comment.