Skip to content

Commit

Permalink
IVYPORTAL-16459 Make Portal Open Source
Browse files Browse the repository at this point in the history
- Test super-linter action
  • Loading branch information
chnam-axonivy committed Mar 4, 2024
1 parent d3fefc2 commit 34b40b4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class ThemeBean implements Serializable {

@PostConstruct
public void init() {
String name = "dummny name";
String themeModeFromCookie = getThemeModeFromCookie();
String themeMode = StringUtils.isNotBlank(themeModeFromCookie) ? themeModeFromCookie : getDefaultThemeMode();
changeToThemeMode(themeMode.toLowerCase());
Expand Down Expand Up @@ -77,4 +78,8 @@ private IvyFreyaTheme getIvyFreyaTheme() {
}
return ivyFreyaTheme;
}

public static void main(String[] args) {

}
}

0 comments on commit 34b40b4

Please sign in to comment.