add documents, timelines to data vault tag manager

This commit is contained in:
drusepth 2022-10-09 19:49:53 -07:00
parent fabd4c51c0
commit f68f9f44b3
2 changed files with 3 additions and 3 deletions

View File

@ -2,15 +2,15 @@
#thredded--container {
.thredded--navigation--search {
margin-top: 4.5em;
#q /* search input */ {
padding-left: 16px;
margin-top: 4.5em;
}
@media only screen and (min-width: 600px) {
#q /* search input */ {
height: 19px;
height: 14px;
}
}
}

View File

@ -4,7 +4,7 @@
<h2 class="grey-text" style="font-size: 2rem">Your Notebook.ai tags</h2>
<ul class="collapsible">
<% Rails.application.config.content_types[:all].each do |content_type| %>
<% (Rails.application.config.content_types[:all] + [Document, Timeline]).each do |content_type| %>
<%
grouped_tags = PageTag.where(page_type: content_type.name, user_id: current_user).order('tag ASC').group_by(&:tag)