git-watchtower 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/server/web-ui/js.js +1 -1
package/package.json
CHANGED
package/src/server/web-ui/js.js
CHANGED
|
@@ -1087,7 +1087,7 @@ ${pureFnBlock}
|
|
|
1087
1087
|
const msg = pendingBranch
|
|
1088
1088
|
? 'You have uncommitted changes. Stash them before switching to <strong>' + escHtml(pendingBranch) + '</strong>?'
|
|
1089
1089
|
: 'Stash all uncommitted changes in the working directory?';
|
|
1090
|
-
|
|
1090
|
+
let html = '<div style="color:var(--text-dim);font-size:13px;margin-bottom:16px;">' + msg + '</div>';
|
|
1091
1091
|
html += '<div class="confirm-actions">';
|
|
1092
1092
|
html += '<button class="confirm-btn" id="stash-cancel">Cancel</button>';
|
|
1093
1093
|
html += '<button class="confirm-btn primary" id="stash-confirm">Stash & Continue</button>';
|