mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Desktop: Fix issue with tag not being displayed below note when it is created
This commit is contained in:
parent
8e5762c3a3
commit
339d7d16c7
@ -40,7 +40,9 @@ const reduxSharedMiddleware = async function(store, next, action) {
|
|||||||
|
|
||||||
if (action.type === 'NOTE_DELETE' ||
|
if (action.type === 'NOTE_DELETE' ||
|
||||||
action.type === 'NOTE_SELECT' ||
|
action.type === 'NOTE_SELECT' ||
|
||||||
action.type === 'NOTE_SELECT_TOGGLE') {
|
action.type === 'NOTE_SELECT_TOGGLE' ||
|
||||||
|
action.type === 'TAG_UPDATE_ONE' ||
|
||||||
|
action.type === 'TAG_UPDATE_ALL') {
|
||||||
let noteTags = [];
|
let noteTags = [];
|
||||||
|
|
||||||
// We don't need to show tags unless only one note is selected.
|
// We don't need to show tags unless only one note is selected.
|
||||||
|
Loading…
Reference in New Issue
Block a user