hometext fix
This commit is contained in:
parent
cfaaeebd4a
commit
135f9611df
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public class AppConfig {
|
|||
|
||||
@Bean(name = "homeText")
|
||||
public String homeText() {
|
||||
return applicationProperties.getUi().getHomeDescription();
|
||||
return (applicationProperties.getUi().getHomeDescription() != null) ? applicationProperties.getUi().getHomeDescription() : "null";
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue