Swagger ui REST endpoint css layout issue
I recently changed from flask_restplus to flask_restx since I read it is deprecated.
However, since I changed the Swagger UI has this layout issue here which it did not have with flask_restplus. Here is the Issue I get with flask_restx:

I assume this is a css issue where it does not correctly match for the class "opblock-summary-control". When I played around I found that if I set the display property of the button element to "flex" instead of "block" it looks better but still not quite right:

All the class names of the elements are the same compared to a working version of a swagger UI generated by a swagger UI docker container as far as I can tell.
has anybody encountered similar issues?
Environment
- Python version = 3.8.11
- Flask version = 2.0.2
- Flask-RESTX version = 0.5.1
- Werkzeug version = 2.0.2
Somehow the issue resolved itself. I restarted everything and it started running on port 5000 instead of 5001 and from that on it worked as expected again. ... weird
I'm not sure if I should close this or leave it open since there is apparently some way that this can happen.
Hey @thunderbug1 I suggest force reloading the page (shift+ctrl+f5) when you encounter these problems. The one you had most likely resolved itself when the cache was cleared and the browser properly reloaded the whole page. This can happen quite frequently with the swagger UI. Best, Lukas