Edits case messages (#134074) (#134358)

(cherry picked from commit 705ab63824)

Co-authored-by: Lisa Cawley <lcawley@elastic.co>
This commit is contained in:
Kibana Machine 2022-06-14 11:56:52 -04:00 committed by GitHub
parent 0713efb1ef
commit fd5dda8215
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -293,6 +293,6 @@ export const READ_ACTIONS_PERMISSIONS_ERROR_MSG = i18n.translate(
'xpack.cases.configure.readPermissionsErrorDescription',
{
defaultMessage:
'You do not have permissions to view connectors. If you would like to view connectors, contact your Kibana administrator.',
'You do not have permission to view connectors. If you would like to view connectors, contact your Kibana administrator.',
}
);

View file

@ -43,7 +43,7 @@ import {
} from '../utils';
type CaseCommentModelParams = Omit<CasesClientArgs, 'authorization'>;
const ALERT_LIMIT_MSG = `Case has already reach the maximum allowed number (${MAX_ALERTS_PER_CASE}) of attached alerts on a case`;
const ALERT_LIMIT_MSG = `Case has reached the maximum allowed number (${MAX_ALERTS_PER_CASE}) of attached alerts.`;
/**
* This class represents a case that can have a comment attached to it.