Skip to content

Commit e5cdc25

Browse files
committed
Fix error
1 parent 9cb506b commit e5cdc25

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Fixed
1717
- Changing system mode (environment name) in setting spersists after instance restart (#655)
18-
- Popping from stash is more responsive (#687)
18+
- Popping from stash is more responsive (#687, #747)
1919
- Favorites links for Git pages now works on recent IRIS versions (#734)
2020
- IDE editing of decomposed productions now properly handles adds and deletes (#643)
2121

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20082008
webui.showSuccess("Applied stash item");
20092009
parent.update();
20102010
self.clear()
2011-
}, webui.showWarning(output), webui.showError(output));
2011+
});
20122012
}
20132013

20142014
self.popSelectedStash = function() {
@@ -2020,7 +2020,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20202020
webui.showSuccess("Popped from stash");
20212021
parent.update();
20222022
self.clear()
2023-
}, webui.showWarning(output), webui.showError(output));
2023+
});
20242024
}
20252025

20262026
self.dropSelectedStash = function() {
@@ -2032,7 +2032,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20322032
webui.showSuccess("Dropped from stash");
20332033
parent.update();
20342034
self.clear();
2035-
}, webui.showWarning(output), webui.showError(output));
2035+
});
20362036
}
20372037

20382038
var html = '<div class="diff-view-container panel panel-default">';

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20082008
webui.showSuccess("Applied stash item");
20092009
parent.update();
20102010
self.clear()
2011-
}, webui.showWarning(output), webui.showError(output));
2011+
});
20122012
}
20132013

20142014
self.popSelectedStash = function() {
@@ -2020,7 +2020,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20202020
webui.showSuccess("Popped from stash");
20212021
parent.update();
20222022
self.clear()
2023-
}, webui.showWarning(output), webui.showError(output));
2023+
});
20242024
}
20252025

20262026
self.dropSelectedStash = function() {
@@ -2032,7 +2032,7 @@ webui.DiffView = function(sideBySide, hunkSelectionAllowed, parent, stashedCommi
20322032
webui.showSuccess("Dropped from stash");
20332033
parent.update();
20342034
self.clear();
2035-
}, webui.showWarning(output), webui.showError(output));
2035+
});
20362036
}
20372037

20382038
var html = '<div class="diff-view-container panel panel-default">';

0 commit comments

Comments
 (0)