mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
Cleanup and fixes for resource viewer and filter plugin (#12154)
* Cleanup and fixes for resource viewer and filter plugin * fix strict nulls
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as azdata from 'azdata';
|
||||
import { textFormatter, hyperLinkFormatter, imageFormatter } from 'sql/base/browser/ui/table/formatters';
|
||||
|
||||
export function getDataGridFormatter(formatterType: azdata.DataGridColumnType): Slick.Formatter<any> {
|
||||
switch (formatterType) {
|
||||
case 'text':
|
||||
return textFormatter;
|
||||
case 'hyperlink':
|
||||
return hyperLinkFormatter;
|
||||
case 'image':
|
||||
return imageFormatter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user