Oilers’ Leon Draisaitl probable to return to lineup vs. Flames
Leon Draisaitl has been ruled as probable to return to the lineup when the Oilers host the Calgary Flames, according to head coach Kris Knoblauch.

The Edmonton Oilers could get some much-needed help in the final Battle of Alberta of the season.
Leon Draisaitl has been ruled as probable to return to the lineup when the Oilers host the Calgary Flames, the team announced.
Draisaitl, 29, was skating on a line with Viktor Arvidsson and Vasily Podkolzin during the team’s morning skate on Saturday.
Draisaitl got tangled up back on March 18 against Utah and suffered an undisclosed injury. He leads the league with 49 goals and the Oilers with 101 points.
His absence has been notable with Connor McDavid also sidelined with a lower-body injury that has him expected to be out longer.
Watch the Oilers take on the Flames on Hockey Night in Canada at 8 p.m. MT / 10 p.m. ET.
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_0d7b2ddace0300df2d45822efb3242e1', 'NHL', 'ef111f24-a19e-4688-9b78-91c0568a28d9');