Skip to content

Commit

Permalink
Merge pull request #2240 from posit-dev/dotnomad/windows-decorators
Browse files Browse the repository at this point in the history
Use `file.id` comparison to match content record files list
  • Loading branch information
dotNomad authored Sep 9, 2024
2 parents 1da08cc + 770713c commit ce4c295
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
v-if="
file.isFile &&
isFileIncluded(file) &&
!home.flatFiles.lastDeployedFiles.has(file.rel)
!home.flatFiles.lastDeployedFiles.has(file.id)
"
class="text-git-added"
>
Expand All @@ -38,7 +38,7 @@
v-if="
file.isFile &&
!isFileIncluded(file) &&
home.flatFiles.lastDeployedFiles.has(file.rel)
home.flatFiles.lastDeployedFiles.has(file.id)
"
class="text-git-deleted"
>
Expand Down

0 comments on commit ce4c295

Please sign in to comment.