How to customize Spring Boot admin 2.o UI?

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

Answers (1)

nmyk
nmyk

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

Related Questions