pull/4791/head
Your Name 5 months ago
parent 1af49cb949
commit 2f9a0b8005
  1. 2
      libs/remix-ui/git/src/components/panels/branches/localbranchdetails.tsx
  2. 2
      libs/remix-ui/git/src/lib/gitactions.ts

@ -48,7 +48,7 @@ export const LocalBranchDetails = (props: BrancheDetailsProps) => {
try { try {
actions.checkout({ ref: oid }) actions.checkout({ ref: oid })
; ;
} catch (e) { } catch (e) {
// //
} }

@ -632,7 +632,7 @@ export const loadGitHubUserFromToken = async () => {
} }
export const statusMatrix = async (filepaths: string[]) => { export const statusMatrix = async (filepaths: string[]) => {
const matrix = await plugin.call('dgitApi', 'status', { ref: "HEAD", filepaths: filepaths || ['.'] }); const matrix = await plugin.call('dgitApi', 'status', { ref: "HEAD", filepaths: filepaths || ['.']});
const result = (matrix || []).map((x) => { const result = (matrix || []).map((x) => {
return { return {
filename: `/${x.shift()}`, filename: `/${x.shift()}`,

Loading…
Cancel
Save