From 6d2289a3711f17b40dcf0056f2de6fc330697a6d Mon Sep 17 00:00:00 2001 From: jessop Date: Fri, 6 Mar 2020 17:29:06 -0500 Subject: [PATCH] review changes --- ui/component/tagsSearch/view.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/component/tagsSearch/view.jsx b/ui/component/tagsSearch/view.jsx index f2c006db9..9f94129b0 100644 --- a/ui/component/tagsSearch/view.jsx +++ b/ui/component/tagsSearch/view.jsx @@ -3,7 +3,7 @@ import React, { useState } from 'react'; import { Form, FormField } from 'component/common/form'; import Tag from 'component/tag'; import { setUnion, setDifference } from 'util/set-operations'; -import I18nMessage from '../i18nMessage'; +import I18nMessage from 'component/i18nMessage'; type Props = { tagsPassedIn: Array, @@ -154,7 +154,7 @@ export default function TagsSearch(props: Props) { label={'Add Tags'} />
- +
    {Boolean(newTag.length) && !suggestedTags.includes(newTag) && ( ))} - {!suggestedTags.length &&

    No suggested tags

    } + {!suggestedTags.length &&

    {__('No matching tags')}

    }