MCPcopy Create free account
hub / github.com/bytebase/dbhub / Command

Function Command

frontend/src/components/ui/command.tsx:99–113  ·  view source on GitHub ↗
({
  autoHighlight = "always",
  keepHighlight = true,
  open = true,
  ...props
}: React.ComponentProps<typeof Autocomplete>)

Source from the content-addressed store, hash-verified

97}
98
99function Command({
100 autoHighlight = "always",
101 keepHighlight = true,
102 open = true,
103 ...props
104}: React.ComponentProps<typeof Autocomplete>) {
105 return (
106 <Autocomplete
107 autoHighlight={autoHighlight}
108 keepHighlight={keepHighlight}
109 open={open}
110 {...props}
111 />
112 );
113}
114
115function CommandInput({
116 className,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected