Reputation: 31
How to customize Spring Admin 2.0 UI? I want to add some new tabs and delete some of the Info on the Admin screen.
Upvotes: 3
Views: 5836
Reputation: 1622
According to this Stack Overflow question to disable tab you should disable specific endpoint.
To add custom view check their reference documentation, you will need to implement Vue.js component: http://codecentric.github.io/spring-boot-admin/current/#customizing-custom-views
Upvotes: 1