For the Panel DeckGL example, ``` @param.depends('view', 'radius', 'elevation', 'arc_view', watch=True) def update_spec(self): self.deck_gl.object = dict(self.spec) ``` The above snippet used to error out with: `AttributeError: 'NoneType' object has no attribute 'object'` due to which I changed it to: ``` @param.depends('view', 'radius', 'elevation', 'arc_view', watch=True) def update_spec(self): if self.deck_gl: self.deck_gl.object = dict(self.spec) ``` After doing the above, we get issues related to missing CSS... <img width="1728" alt="Screenshot 2023-11-26 at 11 19 50 PM" src="https://github.com/pyscript/examples/assets/20173739/578ccb52-3c5b-4153-9ff6-f32682083890"> According to the quick-start here: https://docs.mapbox.com/mapbox-gl-js/guides/install/#quickstart using the following snippet should be enough, which we already do so... ``` <script src='https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.js'></script> <link href='https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.css' rel='stylesheet' /> ``` So the issue is perhaps related to `self.deck_gl` being None only I assume?