Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Stock-Market-Application/src/components/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default function Overview(props: { changeMarquee: Function, myStockDm: Da

function commandClick(args: CommandClickEventArgs) {
if (args.target!.querySelector('.addmywishlist')) {
args.target.classList.add('added');
args.target.querySelector('.addmywishlist').classList.add('added');
let myWishList = getWishList();
let predicates: Predicate[] = [];
if (myWishList.indexOf((args.rowData as StockDetails).CompanyName) === -1) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export default function SmartStockPicks(props: { myStockDm: DataManager }) {

function commandClick(args: CommandClickEventArgs) {
if (args.target!.querySelector('.addmywishlist')) {
args.target.classList.add('added');
args.target.querySelector('.addmywishlist').classList.add('added');
let myWishList = getWishList();
let predicates: Predicate[] = [];
if (myWishList.indexOf((args.rowData as StockDetails).CompanyName) === -1) {
Expand Down
6 changes: 5 additions & 1 deletion Stock-Market-Application/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ body {
.section1,
.section2 {
width: 50%;
padding: 20px 20px 0;
padding: 15px 15px 0;
}

.section1 {
Expand Down Expand Up @@ -404,6 +404,10 @@ text#stockchartdefault_ChartTitle {

/* Know More */

.kb-carousel.e-carousel .e-carousel-items .e-carousel-item {
height: 360px;
}

.kb-carousel .e-carousel-items .e-carousel-item .product-container {
display: flex;
align-items: center;
Expand Down