Skip to content

Commit

Permalink
[widgets] fix visibility of taglist metadata when sticky column
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoPennec committed Jul 11, 2024
1 parent 8638c86 commit b749f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/lists/AssetList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
class="metadata-descriptor datatable-row-header"
:title="asset.data ? asset.data[descriptor.field_name] : ''"
:style="{
'z-index': 1000 - i, // Needed for combo to be above the next cell
'z-index': 1000 - i - k * 100, // Needed for combo to be above the next cell
left: offsets['editor-' + j]
? `${offsets['editor-' + j]}px`
: '0'
Expand Down
2 changes: 1 addition & 1 deletion src/components/lists/ShotList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
class="metadata-descriptor datatable-row-header"
:title="shot.data ? shot.data[descriptor.field_name] : ''"
:style="{
'z-index': 1000 - i, // Need for combo to be above the next cell
'z-index': 1000 - i - k * 100, // Needed for combo to be above the next cell
left: offsets['editor-' + j]
? `${offsets['editor-' + j]}px`
: '0'
Expand Down

0 comments on commit b749f01

Please sign in to comment.