Stars defenceman Thomas Harley set to return against Jets
The Dallas Stars‘ battered blue line is set to get a little healthier on Tuesday.
Thomas Harley will return to the lineup against the Winnipeg Jets, head coach Glen Gulutzan said on Tuesday.
Live coverage of the game will be available on Sportsnet and Sportsnet+ at 8 p.m. ET / 5 p.m. PT.
Harley has not skated for the team since a Nov. 13 win over the Montreal Canadiens due to an undisclosed lower-body injury.
The 24-year-old had been a steady presence on the Stars’ second pairing. He has one goal and nine assists in 18 games while playing an average of 22:59 per night — second-most among Stars skaters.
Harley, who was born in Syracuse, N.Y., to Canadian parents, is among the contenders for Team Canada at the Olympics after his strong showing at February’s 4 Nations Face-Off.
While he is set to return to action, fellow defencemen Lian Bischel (lower body) and Ilya Lyubushkin (lower body) remain out. Blue-liner Nils Lundkvist returned from a lower-body injury of his own on Sunday.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_e47a3effe5bcfddddf97cf7fe3e14d21', 'NHL', '1f7245f5-9e3a-45ce-a9d5-e4dcc9eee6ad');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0