Skip to content

Commit

Permalink
Fix Tags component style
Browse files Browse the repository at this point in the history
  • Loading branch information
caponetto committed Sep 19, 2024
1 parent d315278 commit efd1041
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/ui-components/src/FormComponents/Tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const Tags: React.FC<ITagProps> = ({
const inputBox =
addingNewTag === true ? (
<ul
className={`${FORM_EDITOR_TAG} tag unapplied-tag`}
className={`${FORM_EDITOR_TAG} jp-CellTags-Tag jp-CellTags-Unapplied`}
key={'editor-new-tag'}
>
<input
Expand All @@ -134,7 +134,7 @@ export const Tags: React.FC<ITagProps> = ({
) : (
<button
onClick={(): void => setAddingNewTag(true)}
className={`${FORM_EDITOR_TAG} tag unapplied-tag`}
className={`${FORM_EDITOR_TAG} jp-CellTags-Tag jp-CellTags-Unapplied`}
>
Add Tag
<addIcon.react
Expand All @@ -157,7 +157,7 @@ export const Tags: React.FC<ITagProps> = ({
return (
<button
onClick={handleClick}
className={`${FORM_EDITOR_TAG} tag unapplied-tag`}
className={`${FORM_EDITOR_TAG} jp-CellTags-Tag jp-CellTags-Unapplied`}
id={`editor-${tag}-${index}`}
key={`editor-${tag}-${index}`}
>
Expand All @@ -170,7 +170,7 @@ export const Tags: React.FC<ITagProps> = ({
return (
<button
onClick={handleClick}
className={`${FORM_EDITOR_TAG} tag applied-tag`}
className={`${FORM_EDITOR_TAG} jp-CellTags-Tag jp-CellTags-Applied`}
id={`editor-${tag}-${index}`}
key={`editor-${tag}-${index}`}
>
Expand All @@ -189,7 +189,7 @@ export const Tags: React.FC<ITagProps> = ({
return (
<button
onClick={handleClick}
className={`${FORM_EDITOR_TAG} tag unapplied-tag`}
className={`${FORM_EDITOR_TAG} jp-CellTags-Tag jp-CellTags-Unapplied`}
id={`editor-${tag}-${index}`}
key={`editor-${tag}-${index}`}
>
Expand Down

0 comments on commit efd1041

Please sign in to comment.