Revision 5c052684fbbaec12d78ccf4d4e69b4e48557c2cd authored by Grot (@grafanabot) on 10 May 2023, 11:32:18 UTC, committed by GitHub on 10 May 2023, 11:32:18 UTC
Nested folders: Redo search query when actions complete (#68102)

redo search query if searching when actions complete

(cherry picked from commit 135b0a25aa14ee670f5e9979fba3fff876690fbd)

Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
1 parent 9cb18ae
Raw File
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "rootDirs": ["public/"],
    "allowJs": true,
    "strict": true,
    "resolveJsonModule": true,
    "useUnknownInCatchVariables": true,
    "incremental": true,
    "tsBuildInfoFile": "./tsconfig.tsbuildinfo",
    "preserveSymlinks": true
  },
  "extends": "@grafana/tsconfig/base.json",
  "include": [
    "public/app/**/*.ts*",
    "public/e2e-test/**/*.ts",
    "public/test/**/*.ts",
    "public/vendor/**/*.ts",
    "packages/grafana-data/typings",
    "packages/grafana-ui/src/types"
  ]
}
back to top