This commit is contained in:
Sean Yesmunt 2019-07-02 00:31:02 -04:00
parent ce85c972b6
commit 21a2e4c550

View file

@ -19,7 +19,7 @@ export default function Tag(props: Props) {
if (!onClick) { if (!onClick) {
title = __('View tag'); title = __('View tag');
} else { } else {
type === 'add' ? __('Add tag') : __('Remove tag'); title = type === 'add' ? __('Add tag') : __('Remove tag');
} }
return ( return (