feat(views/geomap): display in view type

This commit is contained in:
Elian Doran 2025-07-06 11:21:25 +03:00
parent 00fd1ba137
commit 7abb67e737
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -761,7 +761,8 @@
"book_properties": "Book Properties", "book_properties": "Book Properties",
"invalid_view_type": "Invalid view type '{{type}}'", "invalid_view_type": "Invalid view type '{{type}}'",
"calendar": "Calendar", "calendar": "Calendar",
"table": "Table" "table": "Table",
"geo-map": "Geo Map"
}, },
"edited_notes": { "edited_notes": {
"no_edited_notes_found": "No edited notes on this day yet...", "no_edited_notes_found": "No edited notes on this day yet...",

View File

@ -25,6 +25,7 @@ const TPL = /*html*/`
<option value="list">${t("book_properties.list")}</option> <option value="list">${t("book_properties.list")}</option>
<option value="calendar">${t("book_properties.calendar")}</option> <option value="calendar">${t("book_properties.calendar")}</option>
<option value="table">${t("book_properties.table")}</option> <option value="table">${t("book_properties.table")}</option>
<option value="geoMap">${t("book_properties.geo-map")}</option>
</select> </select>
</div> </div>