Skip to content

Commit

Permalink
#972: (hotfix) change order of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
clean-coder committed Jul 17, 2024
1 parent 8ce645e commit 8681be5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public TenantClientCustomizationProvider(final @Value("${okr.tenant-ids}") Strin

private TenantClientCustomization readClientCustomizationConfig(String tenantId) {
return new TenantClientCustomization(
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.favicon", tenantId)),
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.logo", tenantId)),
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.triangles", tenantId)),
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.background-logo", tenantId)),
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.favicon", tenantId)),
env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.title", tenantId)),
new HashMap<>());
}
Expand Down

0 comments on commit 8681be5

Please sign in to comment.