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