Skip to content

Commit

Permalink
added left arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
shamikakumar committed Nov 27, 2020
1 parent 1e5b8ee commit d6d3d88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/src/components/ComparePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {useEffect, useState, useCallback} from "react";
import {useHistory, useLocation} from "react-router-dom";
import {connect} from "react-redux";
import {Alert, ButtonToolbar, Button, OverlayTrigger, Tooltip} from "react-bootstrap";
import {SyncIcon, GitMergeIcon} from "@primer/octicons-react";
import {SyncIcon, GitMergeIcon, ArrowLeftIcon} from "@primer/octicons-react";
import {diff, diffPaginate, merge, resetMerge} from "../actions/refs";
import RefDropdown from "./RefDropdown";
import Changes from "./Changes";
Expand Down Expand Up @@ -106,7 +106,7 @@ const CompareToolbar = ({repo, refId, compare, refresh}) => {
params.delete('compareBranch');
history.push({...location, search: params.toString()})
}}/>

<ArrowLeftIcon className="mr-2 mt-2"/>
<RefDropdown
repo={repo}
selected={compare}
Expand Down

0 comments on commit d6d3d88

Please sign in to comment.