Skip to content

Commit

Permalink
fix(html): remove k-tab-on-top class from tabstrip
Browse files Browse the repository at this point in the history
The class seems to be obsolete
  • Loading branch information
TeyaVes committed Nov 11, 2024
1 parent ef96769 commit 4401875
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/html/src/editor/tests/editor-find-replace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default () =>(
<TabStripNormal className="k-editor-find-replace"
tabStripItems={
<>
<TabStripItem className="k-tab-on-top" value="Find" active />
<TabStripItem value="Find" active />
<TabStripItem value="Replace" />
</>
}
Expand Down Expand Up @@ -80,7 +80,7 @@ export default () =>(
tabStripItems={
<>
<TabStripItem value="Find" />
<TabStripItem className="k-tab-on-top" value="Replace" active />
<TabStripItem value="Replace" active />
</>
}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/html/src/tabstrip/tests/tabstrip-rtl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default () => (
<TabStripLeft dir="rtl"
tabStripItems={
<>
<TabStripItem first className="k-tab-on-top" active value="Inner First" />
<TabStripItem first active value="Inner First" />
<TabStripItem last value="Inner Second" />
</>
}>
Expand Down
2 changes: 1 addition & 1 deletion packages/html/src/tabstrip/tests/tabstrip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default () => (
<TabStripLeft
tabStripItems={
<>
<TabStripItem first className="k-tab-on-top" active value="Inner First" />
<TabStripItem first active value="Inner First" />
<TabStripItem last value="Inner Second" />
</>
}>
Expand Down

0 comments on commit 4401875

Please sign in to comment.