Skip to content

Commit

Permalink
Tabs/Selection: Corrected classname appending in Vue template by addi…
Browse files Browse the repository at this point in the history
…ng wrapper div (DevExpress#27555)
  • Loading branch information
nikkithelegendarypokemonster authored Jun 13, 2024
1 parent 304bc38 commit 4509333
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
22 changes: 12 additions & 10 deletions apps/demos/Demos/Tabs/Selection/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,18 @@
:animation-enabled="true"
>
<template #item="{ data }">
<div class="employee-info">
<img
class="employee-photo"
:alt="data.text"
:src="data.picture"
>
<p class="employee-notes">
<b>Position: {{ data.position }}</b><br>
{{ data.notes }}
</p>
<div>
<div class="employee-info">
<img
class="employee-photo"
:alt="data.text"
:src="data.picture"
>
<p class="employee-notes">
<b>Position: {{ data.position }}</b><br>
{{ data.notes }}
</p>
</div>
</div>
</template>
</DxMultiView>
Expand Down
3 changes: 0 additions & 3 deletions apps/demos/testing/common.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,6 @@ const SKIPPED_TESTS = {
TreeList: [
{ demo: 'Overview', themes: [THEME.material] },
],
Tabs: [
{ demo: 'Selection', themes: [THEME.material, THEME.fluent] },
],
List: [
{ demo: 'ListSelection', themes: [THEME.material] },
{ demo: 'ListWithSearchBar', themes: [THEME.material] },
Expand Down
3 changes: 0 additions & 3 deletions apps/demos/utils/visual-tests/matrix-test-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,6 @@ const SKIPPED_TESTS = {
List: [
{ demo: 'ListSelection', themes: [THEME.material] },
],
Tabs: [
{ demo: 'Selection', themes: [THEME.fluent, THEME.material] },
],
TabPanel: [
{ demo: 'Overview', themes: [THEME.material] },
],
Expand Down

0 comments on commit 4509333

Please sign in to comment.