Use dependent instead of dependant in the message. #6278

This commit is contained in:
Akshay Joshi 2023-05-22 11:38:19 +05:30
parent 7ab096d87f
commit 87c1023c4f
2 changed files with 2 additions and 1 deletions

View File

@ -41,4 +41,5 @@ Bug fixes
| `Issue #6221 <https://github.com/pgadmin-org/pgadmin4/issues/6221>`_ - Fix circular reference error for the multirange data types in the query tool.
| `Issue #6253 <https://github.com/pgadmin-org/pgadmin4/issues/6253>`_ - Fix an issue in the register server when setting the role, an arbitrary SQL query can be fired.
| `Issue #6267 <https://github.com/pgadmin-org/pgadmin4/issues/6267>`_ - Ensure the user is able to log in if the specified OAUTH2_USERNAME_CLAIM is present in the OAuth2 profile.
| `Issue #6278 <https://github.com/pgadmin-org/pgadmin4/issues/6278>`_ - Use dependent instead of dependant in the message.
| `Issue #6281 <https://github.com/pgadmin-org/pgadmin4/issues/6281>`_ - VarChar Field Sizes are missing from Query's Grid header.

View File

@ -115,7 +115,7 @@ export default function Dependents({ nodeData, item, node, ...props }) {
'dependent'
);
message = gettext(
'No dependant information is available for the selected object.'
'No dependent information is available for the selected object.'
);
if (node.hasDepends && !nodeData.is_collection) {
const api = getApiInstance();