fix: remove check

fix/check
Arik Chakma 5 months ago committed by GitHub
parent 83388f07b6
commit 96e5281c50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 17
      src/components/FrameRenderer/renderer.ts

@ -190,25 +190,14 @@ export class Renderer {
e.preventDefault();
const isCurrentStatusDone = targetGroup.classList.contains('done');
const normalizedGroupId = groupId.replace(/^\d+-/, '');
const normalizedGroupId = groupId
.replace(/^\d+-/, '')
.replace('check:', '');
if (normalizedGroupId.startsWith('ext_link:')) {
return;
}
if (/^check:/.test(groupId)) {
window.dispatchEvent(
new CustomEvent(`${this.resourceType}.topic.toggle`, {
detail: {
topicId: groupId.replace('check:', ''),
resourceType: this.resourceType,
resourceId: this.resourceId,
},
}),
);
return;
}
this.updateTopicStatus(
normalizedGroupId,
!isCurrentStatusDone ? 'done' : 'pending',

Loading…
Cancel
Save