We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e1fe1 commit fd753b3Copy full SHA for fd753b3
1 file changed
static/index.js
@@ -64,7 +64,7 @@ document.querySelectorAll('pre').forEach((pre) => {
64
controls.appendChild(btn);
65
66
const prevBtn = document.createElement('button');
67
- prevBtn.textContent = '⏮ Previous';
+ prevBtn.textContent = '⬆ Previous';
68
prevBtn.style.display = 'none';
69
controls.appendChild(prevBtn);
70
@@ -130,7 +130,7 @@ document.querySelectorAll('pre').forEach((pre) => {
130
btn.textContent = '↺ Restart';
131
// running remains true, waiting for user to restart or edit
132
} else {
133
- btn.textContent = '⏭ Next';
+ btn.textContent = '⬇ Next';
134
}
135
136
prevBtn.style.display = history.length > 0 ? 'flex' : 'none';
0 commit comments