Skip to content

Commit

Permalink
fix(select-with-tags): missed dot
Browse files Browse the repository at this point in the history
  • Loading branch information
SiebenSieben committed Mar 2, 2021
1 parent 1a0a229 commit c3c98d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/select-with-tags/src/component.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const matchOption = (option, inputValue) =>
value={value}
onChange={handleChange}
selected={selected}
emptyListPlaceholder={text('emptyListPlaceholder', 'Ничего не найдено')}
emptyListPlaceholder={text('emptyListPlaceholder', 'Ничего не найдено.')}
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/select-with-tags/src/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SelectWithTags = forwardRef<HTMLInputElement, SelectWithTagsProps>(
allowUnselect = true,
collapseTagList = false,
moveInputToNewLine = true,
emptyListPlaceholder = 'Ничего не найдено',
emptyListPlaceholder = 'Ничего не найдено.',
transformCollapsedTagText,
transformTagText,
Tag,
Expand Down

0 comments on commit c3c98d0

Please sign in to comment.