mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
Componenet -> Component (#12934)
This commit is contained in:
@@ -11,12 +11,12 @@ export const Extensions = {
|
||||
|
||||
export const HideInputTag = 'hide_input';
|
||||
|
||||
export interface ICellComponenetRegistry {
|
||||
export interface ICellComponentRegistry {
|
||||
registerComponent(component: any): void;
|
||||
getComponents(): Array<any>;
|
||||
}
|
||||
|
||||
class CellComponenetRegistry implements ICellComponenetRegistry {
|
||||
class CellComponentRegistry implements ICellComponentRegistry {
|
||||
private components = new Array<any>();
|
||||
|
||||
registerComponent(component: any): void {
|
||||
@@ -28,7 +28,7 @@ class CellComponenetRegistry implements ICellComponenetRegistry {
|
||||
}
|
||||
}
|
||||
|
||||
const componentRegistry = new CellComponenetRegistry();
|
||||
const componentRegistry = new CellComponentRegistry();
|
||||
Registry.add(Extensions.CellComponentContributions, componentRegistry);
|
||||
|
||||
export function registerCellComponent(component: any): void {
|
||||
|
||||
Reference in New Issue
Block a user