1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-07 04:55:10 +01:00

Started with refactor to use Vue.js, tags split into list

This commit is contained in:
2018-10-04 21:47:52 +02:00
parent 2615089acd
commit 958ff11a99

View File

@@ -449,7 +449,7 @@ class Bookmark(BaseModel):
'url': self.url, 'url': self.url,
'created': self.created_date.strftime('%Y-%m-%d %H:%M:%S'), 'created': self.created_date.strftime('%Y-%m-%d %H:%M:%S'),
'url_hash': self.url_hash, 'url_hash': self.url_hash,
'tags': self.tags, 'tags': self.tags.split(','),
} }
return result return result