bugfixng seo
This commit is contained in:
parent
7bbf1ffeaf
commit
a00b3a04ad
@ -256,7 +256,7 @@
|
||||
$etfTicker = data?.getParams;
|
||||
$assetType = "stock";
|
||||
$displayCompanyName = data?.companyName;
|
||||
$currentPortfolioPrice = data?.getStockQuote?.price;
|
||||
$currentPortfolioPrice = data?.getStockQuote?.price?.toFixed(2);
|
||||
prePostData = data?.getPrePostQuote || {};
|
||||
const output = [...data?.getOneDayPrice] ?? [];
|
||||
oneDayPrice = output?.map((item) => ({
|
||||
|
||||
@ -150,7 +150,7 @@
|
||||
if ($realtimePrice !== null && $realtimePrice !== 0) {
|
||||
$currentPortfolioPrice = $realtimePrice;
|
||||
} else if ($realtimePrice === null || $realtimePrice === 0) {
|
||||
$realtimePrice = data?.getStockQuote?.price;
|
||||
$realtimePrice = data?.getStockQuote?.price?.toFixed(2);
|
||||
$currentPortfolioPrice = $realtimePrice;
|
||||
} else if (oneDayPrice?.length !== 0) {
|
||||
const length = oneDayPrice?.length;
|
||||
@ -412,9 +412,13 @@
|
||||
}
|
||||
|
||||
let displayLegend = {
|
||||
close: data?.getStockQuote?.price,
|
||||
close: data?.getStockQuote?.price
|
||||
? data?.getStockQuote?.price?.toFixed(2)
|
||||
: "n/a",
|
||||
date: "-",
|
||||
change: data?.getStockQuote?.changesPercentage,
|
||||
change: data?.getStockQuote?.changesPercentage
|
||||
? data?.getStockQuote?.changesPercentage?.toFixed(2)
|
||||
: "n/a",
|
||||
};
|
||||
|
||||
let displayLastLogicalRangeValue;
|
||||
@ -672,7 +676,7 @@
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title={`${$etfTicker} ${$currentPortfolioPrice !== null && $currentPortfolioPrice !== 0 ? $currentPortfolioPrice : data?.getStockQuote?.price} ${displayLegend?.change >= 0 ? "▲" : "▼"} ${displayLegend?.change}%`}
|
||||
title={`${$etfTicker} ${$currentPortfolioPrice !== null && $currentPortfolioPrice !== 0 ? $currentPortfolioPrice : data?.getStockQuote?.price?.toFixed(2)} ${displayLegend?.change >= 0 ? "▲" : "▼"} ${displayLegend?.change}%`}
|
||||
description={`Get a real-time ${data?.companyName} (${$etfTicker}) stock chart, price quote with breaking news, financials, statistics, charts and more.`}
|
||||
/>
|
||||
|
||||
|
||||
@ -259,7 +259,7 @@
|
||||
$stockTicker = data?.getParams;
|
||||
$assetType = "stock";
|
||||
$displayCompanyName = data?.companyName;
|
||||
$currentPortfolioPrice = data?.getStockQuote?.price;
|
||||
$currentPortfolioPrice = data?.getStockQuote?.price?.toFixed(2);
|
||||
prePostData = data?.getPrePostQuote || {};
|
||||
const output = [...data?.getOneDayPrice] ?? [];
|
||||
oneDayPrice = output?.map((item) => ({
|
||||
|
||||
@ -414,9 +414,13 @@
|
||||
}
|
||||
|
||||
let displayLegend = {
|
||||
close: data?.getStockQuote?.price,
|
||||
close: data?.getStockQuote?.price
|
||||
? data?.getStockQuote?.price?.toFixed(2)
|
||||
: "n/a",
|
||||
date: "-",
|
||||
change: data?.getStockQuote?.changesPercentage,
|
||||
change: data?.getStockQuote?.changesPercentage
|
||||
? data?.getStockQuote?.changesPercentage?.toFixed(2)
|
||||
: "n/a",
|
||||
};
|
||||
|
||||
let displayLastLogicalRangeValue;
|
||||
@ -674,7 +678,7 @@
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title={`${$stockTicker} ${$currentPortfolioPrice !== null && $currentPortfolioPrice !== 0 ? $currentPortfolioPrice : data?.getStockQuote?.price} ${displayLegend?.change >= 0 ? "▲" : "▼"} ${displayLegend?.change}%`}
|
||||
title={`${$stockTicker} ${$currentPortfolioPrice !== null && $currentPortfolioPrice !== 0 ? $currentPortfolioPrice : data?.getStockQuote?.price?.toFixed(2)} ${displayLegend?.change >= 0 ? "▲" : "▼"} ${displayLegend?.change}%`}
|
||||
description={`Get a real-time ${data?.companyName} (${$stockTicker}) stock chart, price quote with breaking news, financials, statistics, charts and more.`}
|
||||
/>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user