Browse Source

[Fix][UI][V1.0.0-Beta] Fix the problem of packing failure. (#9962)

(cherry picked from commit 1971d8b3b5)
3.0.0/version-upgrade
Amy0104 2 years ago committed by Jiajie Zhong
parent
commit
fa6651453c
  1. 1
      dolphinscheduler-ui/src/components/form/fields/radio.ts

1
dolphinscheduler-ui/src/components/form/fields/radio.ts

@ -39,7 +39,6 @@ export function renderRadio(item: IJsonItem, fields: { [field: string]: any }) {
() => () =>
h(NSpace, null, () => h(NSpace, null, () =>
unref(options).map((option: IOption) => unref(options).map((option: IOption) =>
// @ts-ignore
h(NRadio, option, () => option.label) h(NRadio, option, () => option.label)
) )
) )

Loading…
Cancel
Save