import AbstractSearchOption from "./abstract_search_option.js"; const TPL = ` Include archived notes `; export default class IncludeArchivedNotes extends AbstractSearchOption { static get optionName() { return "includeArchivedNotes" }; static get attributeType() { return "label" }; static async create(noteId) { await AbstractSearchOption.setAttribute(noteId,'label', 'includeArchivedNotes'); } doRender() { return $(TPL); } }