Fix vue warning on key (#127)

This commit is contained in:
Chenlei Hu
2024-07-13 09:04:16 -04:00
committed by GitHub
parent f1acdf976a
commit 5fac7c9365

View File

@@ -55,11 +55,6 @@ const props = defineProps({
type: Object as PropType<ComfyNodeDef>,
required: true,
},
// Make sure vue properly re-render the component when the nodeDef changes
key: {
type: String,
required: true,
},
});
const nodeDef = props.nodeDef as ComfyNodeDef;