resolver-egretimp-plus 0.1.99 → 0.1.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/utils/render.jsx
CHANGED
|
@@ -985,7 +985,7 @@ function createFormLable(config, lang = 'zh') {
|
|
|
985
985
|
onClick={() => config.onLabelClick && config.onLabelClick?.(config)}
|
|
986
986
|
>
|
|
987
987
|
{/* {required ? <span style="color: #f5222d; margin-right: 3px">*</span> : null} */}
|
|
988
|
-
{required ? '*' : null}
|
|
988
|
+
{/* {required ? '*' : null} */}
|
|
989
989
|
{lang.indexOf('zh') > -1 ? (config.labelZh || config.metaNameZh) : (config.labelEn || config.metaNameEn)}
|
|
990
990
|
</span>
|
|
991
991
|
{
|