Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
library-panels
/
components
/
DeleteLibraryPanelModal
/
File Content:
actions.ts
import { getConnectedDashboards as apiGetConnectedDashboards } from '../../state/api'; import { DispatchResult, LibraryElementDTO } from '../../types'; import { searchCompleted } from './reducer'; export function getConnectedDashboards(libraryPanel: LibraryElementDTO): DispatchResult { return async function (dispatch) { const dashboards = await apiGetConnectedDashboards(libraryPanel.uid); dispatch(searchCompleted({ dashboards })); }; }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
DeleteLibraryPanelModal.tsx
3059 bytes
0644
actions.ts
454 bytes
0644
reducer.test.ts
1355 bytes
0644
reducer.ts
974 bytes
0644
N4ST4R_ID | Naxtarrr