lrf hace 2 años
padre
commit
1922f72d0e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/public/table-template.js

+ 1 - 1
app/public/table-template.js

@@ -23,7 +23,7 @@ module.exports = (data) => {
           propStr = `${propStr}'${p}'`;
         }
         propStr += ']';
-        refStr = `, getProp: ${propStr}`;
+        refStr += `, getProp: ${propStr}`;
       }
     }
     const str = `  ${title}: { type: ${type || 'String'}, required: ${required} ${type === 'Secret' ? ', select: false' : ''} ${def ? `, default: '${def}'` : ''}${