Fix batch lock feature

The id for the Tailwind modal pane changed, and this caused the batch
lock feature to no longer work. This CL fixes the issue by changing the
id to the new one.

Reported at
https://groups.google.com/g/twpowertools-discuss/c/MHBh11eaxoM.

Change-Id: I6c75d3aaef55ce0eadb4c2aeeca5e0e21c03c48d
diff --git a/src/contentScripts/communityConsole/batchLock.js b/src/contentScripts/communityConsole/batchLock.js
index 83af3ce..29a3dc3 100644
--- a/src/contentScripts/communityConsole/batchLock.js
+++ b/src/contentScripts/communityConsole/batchLock.js
@@ -3,13 +3,14 @@
 import {addButtonToThreadListActions, removeChildNodes, shouldAddBtnToActionBar, softRefreshView} from './utils/common.js';
 
 const kLockDebugId = 'twpt-lock';
+export const kModalPaneSelector = '.pane[pane-id="default--1"]';
 
 export var batchLock = {
   shouldAddButton(node) {
     return shouldAddBtnToActionBar(kLockDebugId, node);
   },
   createDialog() {
-    var modal = document.querySelector('.pane[pane-id="default-1"]');
+    var modal = document.querySelector(kModalPaneSelector);
 
     var dialog = document.createElement('material-dialog');
     dialog.setAttribute('role', 'dialog');