import AbstractSearchOption from "./abstract_search_option.js"; import { t } from "../../services/i18n.js"; const TPL = ` ${t("debug.debug")} `; export default class Debug extends AbstractSearchOption { static get optionName() { return "debug"; } static get attributeType() { return "label"; } static async create(noteId: string) { await AbstractSearchOption.setAttribute(noteId, "label", "debug"); } doRender() { return $(TPL); } }