Skip to content

Commit 99d38e6

Browse files
committed
Temporarily suppress user check on uncommitted items
Need to rethink for (e.g.) sc-list.txt, deletes.
1 parent 7e1b9a1 commit 99d38e6

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

git-webui/release/share/git-webui/webui/css/git-webui.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
/*
17+
* Modifications Copyright (C) 2021 InterSystems Corporation
18+
*/
1619
html,
1720
body {
1821
height: 100%;
@@ -245,6 +248,7 @@ body {
245248
-webkit-flex-direction: column;
246249
}
247250
.file-list-view {
251+
border-radius: 0px;
248252
-webkit-touch-callout: none;
249253
-webkit-user-select: none;
250254
-khtml-user-select: none;
@@ -255,6 +259,7 @@ body {
255259
-webkit-flex: 1 1 0px;
256260
}
257261
.file-list-view .file-list-container {
262+
border-radius: 0px;
258263
display: flex;
259264
display: -webkit-flex;
260265
min-height: 0;
@@ -300,12 +305,10 @@ body {
300305
border: 0;
301306
margin: 0;
302307
}
303-
.panel-heading {
304-
border-bottom: 1px solid #dddddd;
305-
}
306308
.diff-view-container .panel-heading {
307309
margin: 0;
308310
padding: 5px 16px;
311+
border-bottom: 1px solid #dddddd;
309312
display: flex;
310313
display: -webkit-flex;
311314
min-height: 0;

git-webui/release/share/git-webui/webui/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17+
<!--
18+
Modifications Copyright (C) 2021 InterSystems Corporation
19+
-->
1720
<html lang="en">
1821
<head>
1922
<meta charset="utf-8">

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
* limitations under the License.
1515
*/
1616

17+
/*
18+
* Modifications Copyright (C) 2021 InterSystems Corporation
19+
*/
20+
1721
"use strict"
1822

1923
var webui = webui || {};
@@ -1484,7 +1488,7 @@ webui.ChangedFilesView = function(workspaceView, type, label) {
14841488
} else {
14851489
model = line;
14861490
}
1487-
var isForCurrentUser = (uncommittedItems.indexOf(model) > -1);
1491+
var isForCurrentUser = true; //(uncommittedItems.indexOf(model) > -1);
14881492
var cssClass = isForCurrentUser ? 'list-group-item available' : 'list-group-item unavailable';
14891493

14901494
var item = $('<a class="'+cssClass+'">').appendTo(fileList)[0];

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ webui.ChangedFilesView = function(workspaceView, type, label) {
14881488
} else {
14891489
model = line;
14901490
}
1491-
var isForCurrentUser = (uncommittedItems.indexOf(model) > -1);
1491+
var isForCurrentUser = true; //(uncommittedItems.indexOf(model) > -1);
14921492
var cssClass = isForCurrentUser ? 'list-group-item available' : 'list-group-item unavailable';
14931493

14941494
var item = $('<a class="'+cssClass+'">').appendTo(fileList)[0];

0 commit comments

Comments
 (0)