fix: don't hide note tags container on desktop

This commit is contained in:
Aman Harwara
2022-09-27 16:19:06 +05:30
parent 720215eea7
commit 70e57e32b3

View File

@@ -39,6 +39,7 @@ import { classNames } from '@/Utils/ConcatenateClassNames'
import AutoresizingNoteViewTextarea from './AutoresizingTextarea'
import MobileItemsListButton from '../NoteGroupView/MobileItemsListButton'
import NoteTagsPanel from '../NoteTags/NoteTagsPanel'
import NoteTagsContainer from '../NoteTags/NoteTagsContainer'
const MinimumStatusDuration = 400
const TextareaDebounce = 100
@@ -1005,6 +1006,12 @@ class NoteView extends PureComponent<NoteViewProps, State> {
</div>
)}
</div>
{!this.state.shouldStickyHeader && (
<NoteTagsContainer
noteTagsController={this.viewControllerManager.noteTagsController}
navigationController={this.viewControllerManager.navigationController}
/>
)}
</div>
)}