Files
redash/client/app/components/dynamic-form/getFieldLabel.js
2020-08-25 14:24:15 -03:00

7 lines
155 B
JavaScript

import { toHuman } from "@/lib/utils";
export default function getFieldLabel(field) {
const { title, name } = field;
return title || toHuman(name);
}