Commit e4f1fd99 authored by Patrik Tomov's avatar Patrik Tomov
Browse files

Merge branch 'update-context-menu-text' into 'master'

Fixed context menu text

See merge request grp-fidentis/analyst-webapp!62
parents 01a007b4 ae6fe7f8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ const ContextMenu: React.FC<ContextMenuProps> = ({
					onClose();
				}}
			>
				Show face in scene
				Show face in the scene
			</MenuItem>
		];
	} else if (contextMenu.type === 'column') {
@@ -99,7 +99,7 @@ const ContextMenu: React.FC<ContextMenuProps> = ({
					onClose();
				}}
			>
				Show face in scene
				Show face in the scene
			</MenuItem>
		];
	} else if (contextMenu.type === 'cell') {
@@ -115,7 +115,7 @@ const ContextMenu: React.FC<ContextMenuProps> = ({
			>
				{contextMenu.rowName === contextMenu.columnName
					? 'Hide Face'
					: 'Hide Both'}
					: 'Hide Both Faces'}
			</MenuItem>,
			<MenuItem
				key="open-task-cell"
@@ -159,7 +159,7 @@ const ContextMenu: React.FC<ContextMenuProps> = ({
						onClose();
					}}
				>
					Show faces in scene
					Show faces in the scene
				</MenuItem>
			);
		}