Skip to content

Commit a15775e

Browse files
authored
Merge branch 'main' into fix_regex_tests
2 parents bd296bd + 14d9ec0 commit a15775e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

api/src/main/java/io/kafbat/ui/config/auth/AbstractAuthSecurityConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ protected AbstractAuthSecurityConfig() {
2121
"/manifest.json",
2222
"/favicon.svg",
2323
"/favicon/**",
24+
"/images/**",
25+
"/fonts/**",
2426

2527
"/static/**",
2628
"/resources/**",
File renamed without changes.

frontend/src/components/common/Icons/ServiceImage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface Props {
55
}
66

77
function ServiceImage({ serviceName }: Props) {
8-
return <img src="serviceImage.png" alt={serviceName} />;
8+
return <img src="images/serviceImage.png" alt={serviceName} />;
99
}
1010

1111
export default ServiceImage;

0 commit comments

Comments
 (0)