Skip to content

Commit

Permalink
removing references to 'inspector'
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-henz committed Jun 21, 2021
1 parent 4ee8b99 commit 77f2f6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const MobileSideContent: React.FC<MobileSideContentProps & OwnProps> = props =>
* would force React.useMemo to recompute the nullary function anyway
*/
const renderedPanels = () => {
// TODO: Fix the CSS of all the panels (e.g. subst_visualizer, inspector, etc.)
// TODO: Fix the CSS of all the panels (e.g. subst_visualizer)
const renderPanel = (tab: SideContentTab, workspaceLocation?: WorkspaceLocation) => {
const tabBody: JSX.Element = workspaceLocation
? {
Expand Down Expand Up @@ -175,7 +175,7 @@ const MobileSideContent: React.FC<MobileSideContentProps & OwnProps> = props =>
/**
* Remove the 'side-content-tab-alert' class that causes tabs flash.
* To be run when tabs are changed.
* Currently this style is only used for the "Inspector" and "Env Visualizer" tabs.
* Currently this style is only used for the "Env Visualizer" tab.
*/
const resetAlert = (prevTabId: TabId) => {
const iconId = generateIconId(prevTabId);
Expand Down
2 changes: 1 addition & 1 deletion src/commons/sideContent/SideContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const SideContent = (props: SideContentProps) => {
/**
* Remove the 'side-content-tab-alert' class that causes tabs flash.
* To be run when tabs are changed.
* Currently this style is only used for the "Inspector" and "Env Visualizer" tabs.
* Currently this style is only used for the "Env Visualizer" tab.
*/
const resetAlert = (prevTabId: TabId) => {
const iconId = generateIconId(prevTabId);
Expand Down
1 change: 0 additions & 1 deletion src/commons/sideContent/SideContentTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export enum SideContentType {
envVisualizer = 'env_visualizer',
grading = 'grading',
introduction = 'introduction',
inspector = 'inspector',
module = 'module',
questionOverview = 'question_overview',
remoteExecution = 'remote_execution',
Expand Down

0 comments on commit 77f2f6a

Please sign in to comment.