Compare commits

..

No commits in common. "d7f567070070bbb57596af7e864b2cb2da96049d" and "a9a0997714aaf06394e3fe82bf55770047d70f48" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

@ -152,9 +152,8 @@ Item {
size: isDir ? 0 : model.size
stars: isDir ? 0 : model.stars
// split string to array
tags: isDir ? [] : model.tags === null
|| model.tags === undefined
|| model.tags === "" ? [] : model.tags.split(",")
tags: isDir ? [] : model.tags.length === 0 ? [] : model.tags.split(
",")
onTagClicked: {
emit: search(tag)
console.log(tag)