mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04: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);
|
|
}
|