Skip to content

Commit 2687a5a

Browse files
committed
chore(#2122): check for ApiVersion.V3
1 parent f3c7f16 commit 2687a5a

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/views/instances/metrics

1 file changed

+1
-1
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/instances/metrics/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const ApiVersion = Object.freeze({
122122
});
123123
124124
function isActuatorApiVersionSupported(headerContentType) {
125-
return headerContentType.includes(ApiVersion.V2) || headerContentType.includes(ApiVersion.V2);
125+
return headerContentType.includes(ApiVersion.V2) || headerContentType.includes(ApiVersion.V3);
126126
}
127127
128128
export default {

0 commit comments

Comments
 (0)