D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
datasources
/
components
/
Filename :
DataSourceMissingRightsMessage.tsx
back
Copy
import React from 'react'; import { Alert } from '@grafana/ui'; export const missingRightsMessage = 'You are not allowed to modify this data source. Please contact your server admin to update this data source.'; export function DataSourceMissingRightsMessage() { return ( <Alert severity="info" title="Missing rights"> {missingRightsMessage} </Alert> ); }