@bluemarble/bm-components 0.0.48 → 0.0.50
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.
package/dist/esm/index.js
CHANGED
|
@@ -15218,8 +15218,8 @@ const Modal = (_a) => {
|
|
|
15218
15218
|
|
|
15219
15219
|
function GetInputLabel(columns) {
|
|
15220
15220
|
return (columnName) => {
|
|
15221
|
-
|
|
15222
|
-
return
|
|
15221
|
+
const column = columns.find((column) => column.name === columnName);
|
|
15222
|
+
return { label: column.label, name: column.name };
|
|
15223
15223
|
};
|
|
15224
15224
|
}
|
|
15225
15225
|
|