From 2df16566bce4e7485c3cd26668875e9660ec1aaf Mon Sep 17 00:00:00 2001 From: ole1986 Date: Sat, 8 Feb 2020 16:03:14 +0100 Subject: [PATCH] Fixed issue not showing file status in commit details --- browser/src/components/LogView/Commit/FileEntry/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/src/components/LogView/Commit/FileEntry/index.tsx b/browser/src/components/LogView/Commit/FileEntry/index.tsx index 141d8f88..f5e8f1b6 100644 --- a/browser/src/components/LogView/Commit/FileEntry/index.tsx +++ b/browser/src/components/LogView/Commit/FileEntry/index.tsx @@ -38,7 +38,7 @@ export class FileEntry extends React.Component { } const style = { marginLeft: '0.3em', - backgroundImage: `url('icons/${theme}/${icon}')`, + backgroundImage: `url('${window['server_url']}icons/${theme}/${icon}')`, display: 'inline-block', height: '0.9em', width: '0.9em',