Skip to content

Commit

Permalink
fix(comp:table): change filterable dropdown footer button size to xs (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sallerli1 authored and danranVm committed Oct 21, 2022
1 parent b85ddfd commit 6c6411a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ const renderFooter = (
const { filterConfirm, filterReset } = locale.table
return (
<div class={`${mergedPrefixCls.value}-filterable-trigger-footer`}>
<IxButton mode="primary" size="sm" onClick={handleConfirm}>
<IxButton mode="primary" size="xs" onClick={handleConfirm}>
{filterConfirm}
</IxButton>
<IxButton size="sm" onClick={handleReset}>
<IxButton size="xs" onClick={handleReset}>
{filterReset}
</IxButton>
</div>
Expand Down

0 comments on commit 6c6411a

Please sign in to comment.