We have a branch "prod" into which a PR is going to be merged. The Left Hand Side of the "Compare" dialog thus should be showing the "prod" branch content. It looks like this:
<span class="file-name" [innerText]="row.ts | date:'MMM dd, yyyy, hh:ss a'"></span>
However the "prod" branch content actually contains a formatting bug fix :
<span class="file-name" [innerText]="row.ts | date:'MMM dd, yyyy, hh:mm:ss a'"></span>
This behavior is repeatable across multiple team members so it does not appear to be a browser caching issue. Also this can be seen when running git diff
from the command line using the three-dot syntax.
git diff prod...prod-feature | grep hh
Why does this happen?