fix(maps): location panel rendering #387
Conversation
The `onPanelActive` has been removed with Web v6. Removes the method call here because it doesn't seem to be necessary.
|
Hmmm... what was it used for before? Is the initialized still needed at all? 🤔 |
Just tried hardcoding it to |
|
Dunno, there must be a watcher then - what's that doing? |
I don't see any watcher here. But let's maybe keep it to ensure it doesn't break anything else. The active panel check on the other hand can safely go I think. It's a root panel, so when the component gets mounted, it's active. |
|
Well if it doesnt has any use, let's remove it... no use in leaving dead code. If it breaks something, we can fix it again |
Alright, removed it 👍 |
4fdcb13 to
c363391
Compare
c363391 to
9bc8766
Compare
The
onPanelActivehas been removed with Web v6. Removes the method call here because it doesn't seem to be necessary.