MCPcopy Create free account
hub / github.com/TanStack/hotkeys / buildRowTooltip

Function buildRowTooltip

packages/hotkeys-devtools/src/components/HotkeyList.tsx:117–126  ·  view source on GitHub ↗
(meta?: {
  name?: string
  description?: string
})

Source from the content-addressed store, hash-verified

115}
116
117function buildRowTooltip(meta?: {
118 name?: string
119 description?: string
120}): string | undefined {
121 if (!meta) return undefined
122 const parts: Array<string> = []
123 if (meta.name) parts.push(meta.name)
124 if (meta.description) parts.push(meta.description)
125 return parts.length > 0 ? parts.join(' — ') : undefined
126}
127
128function SequenceListRow(props: {
129 reg: SequenceRegistrationView

Callers 1

rowTooltipFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…