Skip to content

Commit

Permalink
feat: turbo后台信息国际化 TencentBlueKing#86
Browse files Browse the repository at this point in the history
  • Loading branch information
eazence committed Jul 11, 2023
1 parent f5106a2 commit 5e0d7cd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,8 @@ class TurboEngineConfigService @Autowired constructor(
visualRange = paramEnumEntity.visualRange
)
},
tips = I18NUtil.getMessage("${it.engineCode}.paramConfig.${param.paramKey}.tips"),
tips = if (!param.tips.isNullOrBlank()) I18NUtil.getMessage("${it
.engineCode}.paramConfig.${param.paramKey}.tips") else param.tips,
displayed = param.displayed,
defaultValue = param.defaultValue,
required = param.required,
Expand Down

0 comments on commit 5e0d7cd

Please sign in to comment.