king
2025-01-18 f9f60bb0dd17a764ba03faa8041f5b6e9e071553
src/menu/components/form/dragtitle/options.jsx
@@ -8,13 +8,13 @@
  if (appType === 'mob') {
    group.fields.forEach(f => {
      if (f.field && ['select', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
        fields.push({...f, label: `${f.label}(${f.field})`})
      }
    })
  } else {
    group.fields.forEach(f => {
      if (f.field && ['select', 'link', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
        fields.push({...f, label: `${f.label}(${f.field})`})
      }
    })
  }