Skip to content

Commit

Permalink
[desk-tool] Rename Browse History to Review Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolajdobrucki authored and rexxars committed Oct 6, 2020
1 parent dea07f6 commit b4c643b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function DocumentPanel(props: DocumentPanelProps) {
return true
}

if (item.action === 'browseHistory') {
if (item.action === 'reviewChanges') {
openHistory()
return true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const getHistoryMenuItem = (params: Params): MenuAction | null => {

if (isHistoryEnabled) {
return {
action: 'browseHistory',
title: 'Browse history',
action: 'reviewChanges',
title: 'Review changes',
icon: HistoryIcon,
isDisabled: !features.reviewChanges || isHistoryOpen || !value
}
Expand Down

0 comments on commit b4c643b

Please sign in to comment.