pull/5000/head
Joseph Izang 7 months ago committed by Aniket
parent 8be5c68d1d
commit d631239814
  1. 2
      libs/remix-ui/git/src/components/panels/clone.tsx
  2. 6
      libs/remix-ui/git/src/components/panels/commands/pushpull.tsx

@ -79,7 +79,7 @@ export const Clone = ({ plugin }: CloneProps) => {
clone()
}}>clone</GitUIButton>
<hr />
<label>Options</label>
<label className="text-uppercase">Options</label>
<InputGroup className="mt-1 mb-1">
<InputGroup.Prepend className="bg-secondary">
<InputGroup.Text id="clonedepthprepend" className="text-dark">

@ -148,7 +148,7 @@ export const PushPull = () => {
<GitUIButton data-id='sourcecontrol-push' disabledCondition={pushPullIsDisabled()} type="button" onClick={async () => push()} className="btn btn-primary">Push</GitUIButton>
</div>
<label className="pt-3">Local Branch</label>
<label className="pt-3 text-uppercase">Local Branch</label>
<Select
id='commands-local-branch-select'
options={localBranchOptions}
@ -161,7 +161,7 @@ export const PushPull = () => {
placeholder="Type to search for a branch..."
/>
<label className="pt-3">Remote Branch</label>
<label className="pt-3 text-uppercase">Remote Branch</label>
<Select
id='commands-remote-branch-select'
options={remoteBranchOptions}
@ -174,7 +174,7 @@ export const PushPull = () => {
placeholder="Type to search for a branch..."
/>
<label className="pt-3">Remote</label>
<label className="pt-3 text-uppercase">Remote</label>
<Select
id='commands-remote-origin-select'
options={localRemotesOptions}

Loading…
Cancel
Save