mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-19 04:35:46 +01:00
UI: Clarify wording in Corporation (#866)
This commit is contained in:
parent
d4120fa688
commit
62ab9f33be
@ -246,7 +246,7 @@ function PublicButtons({ rerender }: IPublicButtonsProps): React.ReactElement {
|
||||
</ButtonWithTooltip>
|
||||
<SellSharesModal open={sellSharesOpen} onClose={() => setSellSharesOpen(false)} rerender={rerender} />
|
||||
<ButtonWithTooltip
|
||||
normalTooltip={"Buy back shares you that previously issued or sold on the market"}
|
||||
normalTooltip={"Buy back outstanding shares that you previously issued or sold on the market"}
|
||||
disabledTooltip={corp.issuedShares < 1 ? "No shares available to buy back" : ""}
|
||||
onClick={() => setBuybackSharesOpen(true)}
|
||||
>
|
||||
|
@ -89,7 +89,7 @@ export function BuybackSharesModal(props: IProps): React.ReactElement {
|
||||
disabledText
|
||||
) : (
|
||||
<>
|
||||
<b>{corp.name}</b>'s stock price will rise to <Money money={sharePrice} /> per share.
|
||||
<b>{corp.name}</b>'s stock price will settle at <Money money={sharePrice} /> per share.
|
||||
</>
|
||||
)}
|
||||
</Typography>
|
||||
|
@ -88,7 +88,7 @@ export function SellSharesModal(props: IProps): React.ReactElement {
|
||||
<>
|
||||
You will receive <Money money={profit} />.
|
||||
<br />
|
||||
<b>{corp.name}</b>'s stock price will fall to <Money money={sharePrice} /> per share.
|
||||
<b>{corp.name}</b>'s stock price will settle at <Money money={sharePrice} /> per share.
|
||||
</>
|
||||
)}
|
||||
</Typography>
|
||||
|
Loading…
Reference in New Issue
Block a user