Skip to content

Commit

Permalink
Fix: issue-2789 Unable to expand Tier1,Tier2 and Tier 3 description o…
Browse files Browse the repository at this point in the history
…n breadcrumb (#3212)

* Fix: issue-2789 Unable to expand Tier1,Tier2 and Tier 3 description on breadcrumb

* Fix issue-3214 Data Quality - Page refreshing after hitting enter on value textbox
  • Loading branch information
ShaileshParmar11 committed Mar 7, 2022
1 parent 1499d42 commit 8d9951a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,10 @@ const ColumnTestForm = ({
<p className="tw-font-medium tw-px-4">
{isUndefined(data) ? 'Add' : 'Edit'} Column Test
</p>
<form className="tw-w-screen-sm" data-testid="form">
<form
className="tw-w-screen-sm"
data-testid="form"
onSubmit={(e) => e.preventDefault()}>
<div className="tw-px-4 tw-mx-auto">
<Field>
<label className="tw-block tw-form-label" htmlFor="columnName">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,10 @@ const TableTestForm = ({
{isUndefined(data) ? 'Add' : 'Edit'} Table Test
</p>

<form className="tw-w-screen-sm" data-testid="form">
<form
className="tw-w-screen-sm"
data-testid="form"
onSubmit={(e) => e.preventDefault()}>
<div className="tw-px-4 tw-mx-auto">
<Field>
<label className="tw-block tw-form-label" htmlFor="tableTestType">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ const Tags: FunctionComponent<TagProps> = ({
<div className="tw-text-left tw-p-1">
{tag.description && (
<div className="tw-mb-3">
<RichTextEditorPreviewer markdown={tag.description} />
<RichTextEditorPreviewer
enableSeeMoreVariant={false}
markdown={tag.description}
/>
</div>
)}
<p>Set as {tag.labelType}</p>
Expand Down

0 comments on commit 8d9951a

Please sign in to comment.