Skip to content

Commit

Permalink
[IMPROVE] Use tag autocomplete (#22902)
Browse files Browse the repository at this point in the history
Co-authored-by: Tiago Evangelista Pinto <tiago.evangelista@rocket.chat>
  • Loading branch information
MartinSchoeler and tiagoevanp authored Aug 18, 2021
1 parent 1e66554 commit 039b695
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 35 deletions.
35 changes: 0 additions & 35 deletions ee/client/omnichannel/tags/CurrentChatTags.js

This file was deleted.

9 changes: 9 additions & 0 deletions ee/client/omnichannel/tags/CurrentChatTags.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React, { FC } from 'react';

import AutoCompleteTagsMultiple from './AutoCompleteTagsMultiple';

const CurrentChatTags: FC<{ value: Array<string>; handler: () => void }> = ({ value, handler }) => (
<AutoCompleteTagsMultiple onChange={handler} value={value} />
);

export default CurrentChatTags;

0 comments on commit 039b695

Please sign in to comment.