@solidstarters/solid-core 1.2.43 → 1.2.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -131,7 +131,7 @@ export class ViewMetadataService extends CRUDService<ViewMetadata> {
131
131
  // for workflowFields of type selectionStatic we simply return the key/values from field metadata AS-IS
132
132
  if (workflowField.type === 'selectionStatic') {
133
133
  solidFormViewWorkflowData = workflowField.selectionStaticValues.map(item => {
134
- const [label, value] = item.split(":");
134
+ const [value,label] = item.split(":");
135
135
  return { label, value };
136
136
  });
137
137
  }