-
Notifications
You must be signed in to change notification settings - Fork 406
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
feat: conflict detection UI enhancement #3352
Conversation
if (this._conflict.localLastModifiedDate) { | ||
tooltipMessage += nls.localize( | ||
'conflict_detect_local_last_modified_date', | ||
`${new Date(this._conflict.localLastModifiedDate).toLocaleString()}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@violetyao Is this the format we landed on after the last conversation during parking lot?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's based on our slack discussion in this thread! I'll add this item to today's parking lot to double check the format.
@violetyao changes look good overall, will take another look at it once it's been rebased with the latest changes for conflict detection Current status of PR: Awaiting doc changes for conflict detection label. This is required for GA and will be merged after the label has been approved. |
What does this PR do?
This PR displays local and remote
LastModifiedDate
for each conflicting file as tooltip.What issues does this PR fix or reference?
@W-9164041@
Functionality Before
We did not display local and remote
LastModifiedDate
for each conflicting file.Functionality After