From 961d3214c56d384ce8c1f0a10a424e890747c087 Mon Sep 17 00:00:00 2001 From: Jimmy Kuang Date: Wed, 4 Mar 2020 14:45:34 -0800 Subject: [PATCH] Undo exception message to include periods --- .../watcher/public/application/models/watch/json_watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/watcher/public/application/models/watch/json_watch.js b/x-pack/plugins/watcher/public/application/models/watch/json_watch.js index 33f4e5843da67a2..74e44781732eede 100644 --- a/x-pack/plugins/watcher/public/application/models/watch/json_watch.js +++ b/x-pack/plugins/watcher/public/application/models/watch/json_watch.js @@ -47,7 +47,7 @@ export class JsonWatch extends BaseWatch { } else if (!idRegex.test(this.id)) { errors.id.push( i18n.translate('xpack.watcher.sections.watchEdit.json.error.invalidIdText', { - defaultMessage: 'ID can only contain letters, underscores, dashes, and numbers.', + defaultMessage: 'ID can only contain letters, underscores, dashes, periods and numbers.', }) ); }