in paimon-web-server/src/main/java/org/apache/paimon/web/server/service/impl/SysMenuServiceImpl.java [371:383]
public String getComponent(SysMenu menu) {
String component = Constants.LAYOUT;
if (StringUtils.isNotEmpty(menu.getComponent()) && !isMenuFrame(menu)) {
component = menu.getComponent();
} else if (StringUtils.isEmpty(menu.getComponent())
&& menu.getParentId() != 0
&& isInnerLink(menu)) {
component = Constants.INNER_LINK;
} else if (StringUtils.isEmpty(menu.getComponent()) && isParentView(menu)) {
component = Constants.PARENT_VIEW;
}
return component;
}