songjianet commented on code in PR #15350: URL: https://github.com/apache/dolphinscheduler/pull/15350#discussion_r1434633878
########## dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resources.ts: ########## @@ -33,6 +34,7 @@ export function useResources( const resourcesLoading = ref(false) const taskStore = useTaskNodeStore() + const allResourceFullName = ref([] as string[]) Review Comment: ref<Array<string>>([]) or ref<string[]>([]) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
