Skip to content
Snippets Groups Projects

fix: type issue in insertvariablesplugin

Merged Dennis Collaris requested to merge fix/insert-variables-commit-hook into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -33,9 +33,9 @@ export const InsertVariablesPlugin = () => {
const nodeTypes = Object.keys(result.metaData?.nodes.types || {});
function optionsForType(type: string) {
const typeObj = result.metaData?.nodes.types[type] ?? {};
const typeObj = result.metaData?.nodes.types[type] ?? {attributes: null};
if (!('attributes' in typeObj)) {
if (!('attributes' in typeObj) || typeObj.attributes == null) {
return [];
}
Loading