We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 312b003 commit b14ea64Copy full SHA for b14ea64
js/popup.js
@@ -85,7 +85,11 @@ function routeView(action) {
85
*/
86
87
function renderCommon() {
88
- document.getElementById('activeSpaceTitle').value = globalCurrentSpace.name ?? UNSAVED_SESSION;
+ document.getElementById(
89
+ 'activeSpaceTitle'
90
+ ).value = globalCurrentSpace.name
91
+ ? globalCurrentSpace.name
92
+ : UNSAVED_SESSION;
93
94
document.querySelector('body').onkeyup = e => {
95
// listen for escape key
0 commit comments