mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import { toHuman } from "@/lib/utils";
|
|
|
|
export default function getFieldLabel(field) {
|
|
const { title, name } = field;
|
|
return title || toHuman(name);
|
|
}
|