grafana_bak/public/app/features/datasources/components/DataSourceMissingRightsMessage.tsx
2025-04-01 10:38:02 +09:00

13 lines
351 B
TypeScript

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>
);
}