Merge pull request #1123 from mozilla/fix-typo

Fix typo for filter object validation message
This commit is contained in:
Alissa Sobo 2019-12-12 10:00:25 -08:00 коммит произвёл GitHub
Родитель c07f774b9c b705925fb3
Коммит 58be585ac3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -54,7 +54,7 @@ export function cleanRecipeData(data) {
if (!data.filter_object.size && !data.extra_filter_expression) {
// You can't submit a recipe with no extra filter expression and no filter object rules.
// Error thrown here will be automatically turned into a notification message in the UI.
throw new Error('Have you have at least one filter object or a filter expression.');
throw new Error('You must have at least one filter object or a filter expression.');
}
if (data.experimenter_slug === '') {