Compare commits
No commits in common. "d7f567070070bbb57596af7e864b2cb2da96049d" and "a9a0997714aaf06394e3fe82bf55770047d70f48" have entirely different histories.
d7f5670700
...
a9a0997714
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue