Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复[Table] ellipsisTitle优先级低于ellipsis的问题 #1408

Merged
merged 4 commits into from
Sep 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 23 additions & 7 deletions src/config-provider/__tests__/__snapshots__/demo.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3571,7 +3571,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Type
</div>
<div
Expand Down Expand Up @@ -3635,7 +3637,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Platform
</div>
<div
Expand Down Expand Up @@ -3676,7 +3680,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Property
</div>
<div
Expand Down Expand Up @@ -3807,7 +3813,11 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
>
<div
class="t-table__th-cell-inner"
/>
>
<div
class="t-table__ellipsis t-text-ellipsis"
/>
</div>
</th>
<th
class="t-table__th-type"
Expand All @@ -3822,7 +3832,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Type
</div>
<div
Expand Down Expand Up @@ -3886,7 +3898,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Platform
</div>
<div
Expand Down Expand Up @@ -3927,7 +3941,9 @@ exports[`ConfigProvider ConfigProvider tableVue demo works fine 1`] = `
<div
class="t-table__cell--title"
>
<div>
<div
class="t-table__ellipsis t-text-ellipsis"
>
Property
</div>
<div
Expand Down
Loading