Chore: typos in MySQL/PostgreSQL ConfigurationEditor (#52735)

This commit is contained in:
Simon Podlipsky 2022-07-26 01:58:52 +02:00 committed by GitHub
parent 19ef418edc
commit 7eabd7c83a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -169,8 +169,8 @@ export const ConfigurationEditor = (props: DataSourcePluginOptionsEditorProps<My
The database user should only be granted SELECT permissions on the specified database &amp; tables you want to
query. Grafana does not validate that queries are safe so queries can contain any SQL statement. For example,
statements like <code>USE otherdb;</code> and <code>DROP TABLE user;</code> would be executed. To protect
against this we
<strong>Highly</strong> recommmend you create a specific MySQL user with restricted permissions. Checkout the{' '}
against this we <strong>Highly</strong> recommend you create a specific MySQL user with restricted permissions.
Checkout the{' '}
<Link rel="noreferrer" target="_blank" href="http://docs.grafana.org/features/datasources/mysql/">
MySQL Data Source Docs
</Link>

View File

@ -273,8 +273,8 @@ export const PostgresConfigEditor = (props: DataSourcePluginOptionsEditorProps<P
The database user should only be granted SELECT permissions on the specified database &amp; tables you want to
query. Grafana does not validate that queries are safe so queries can contain any SQL statement. For example,
statements like <code>DELETE FROM user;</code> and <code>DROP TABLE user;</code> would be executed. To protect
against this we
<strong>Highly</strong> recommmend you create a specific PostgreSQL user with restricted permissions.
against this we <strong>Highly</strong> recommend you create a specific PostgreSQL user with restricted
permissions.
</Alert>
</>
);