fix: checkbox right click

fix/check
Arik Chakma 5 months ago
parent 3c065338db
commit cae841b898
  1. 4
      src/components/FrameRenderer/renderer.ts

@ -190,7 +190,9 @@ export class Renderer {
e.preventDefault(); e.preventDefault();
const isCurrentStatusDone = targetGroup.classList.contains('done'); const isCurrentStatusDone = targetGroup.classList.contains('done');
const normalizedGroupId = groupId.replace(/^\d+-/, ''); const normalizedGroupId = groupId
.replace(/^\d+-/, '')
.replace('check:', '');
if (normalizedGroupId.startsWith('ext_link:')) { if (normalizedGroupId.startsWith('ext_link:')) {
return; return;

Loading…
Cancel
Save