mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-10-25 11:17:28 +02:00 
			
		
		
		
	test
This commit is contained in:
		
							parent
							
								
									09a0779180
								
							
						
					
					
						commit
						cfaaeebd4a
					
				| @ -24,7 +24,8 @@ public class AppConfig { | ||||
| 
 | ||||
|     @Bean(name = "appName") | ||||
|     public String appName() { | ||||
|         return applicationProperties.getUi().getHomeName(); | ||||
|         String homeTitle =  applicationProperties.getUi().getHomeName(); | ||||
|         return (homeTitle != null) ? homeTitle : "Stirling PDF"; | ||||
|     } | ||||
| 
 | ||||
|     @Bean(name = "appVersion") | ||||
| @ -42,7 +43,7 @@ public class AppConfig { | ||||
|     @Bean(name = "navBarText") | ||||
|     public String navBarText() { | ||||
|         String defaultNavBar = applicationProperties.getUi().getNavbarName() != null ? applicationProperties.getUi().getNavbarName() : applicationProperties.getUi().getHomeName(); | ||||
|         return defaultNavBar; | ||||
|         return (defaultNavBar != null) ? defaultNavBar : "Stirling PDF"; | ||||
|     } | ||||
| 	 | ||||
| 	@Bean(name = "rateLimit") | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user