Update dependency @grafana/experimental to v1.6.1 (#68681)

* Update dependency @grafana/experimental to v1.6.1

* chore(mssql-datasource): update completion provider to work with experimental type changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
This commit is contained in:
renovate[bot]
2023-07-24 15:47:55 +02:00
committed by GitHub
parent 2374458e94
commit c280f884f0
3 changed files with 8 additions and 8 deletions

View File

@ -20,9 +20,9 @@ export const getSqlCompletionProvider: (args: CompletionProviderGetterArgs) => L
...(language && getStandardSQLCompletionProvider(monaco, language)),
tables: {
resolve: async (identifier) => {
return await getTables.current(identifier.table);
return await getTables.current(identifier?.table);
},
parseName: (token: LinkedToken) => {
parseName: (token: LinkedToken | undefined | null) => {
if (!token) {
return { table: '' };
}