Holoviews not showing any display in MS Fabric Jupyter notebook

I am trying to use holoveiws in an MS Fabric Jupyter notebook on a simple example that was provided in documentation.
xs = range(-10,11)

ys = [100-x**2 for x in xs]

curve = hv.Curve((xs, ys))

curve
but i am not getting any display although the cell executed with no errors.

The test that i was doing comes after a failed attempt to plot a Dataset defined as:
datasets=hv.Dataset(pd_daily_summary_df,kdims=[‘DATE’, ‘LP’, ‘TYPE’, ‘QUANTITY’, ‘SOURCE’, ‘TICKER’],vdims=[‘FIRST_PRICE’,
‘LAST_PRICE’, ‘MIN_PRICE’, ‘MAX_PRICE’, ‘AVG_PRICE’])
layout=(datasets.select(LP=‘AGG’,TICKER=‘XAU/USD’).to(hv.Curve,‘DATE’,‘AVG_PRICE’))
layout.opts(opts.Curve(width=600, height=400))

but always with no luck.

Do you see any errors in the “browser console”?

[Finding your browser’s developer console | Balsamiq](Finding your browser's developer console | Balsamiq

Thanks for your reply Marc. I really appreciate your quick reply.
When looking into the console in the developer tools, i can see an error:
GET bundle.index.5595b28afea4f96190c9.js:6

image

https://

What i am finding very strange is that the same error occurs whenever i run any cell in the notebook, even if the cell doesn’t contain holoviews code. For example: when i run the Preformatted text from certain_package import somethingPreformatted text

Please let me know if you need other information.
Regards