1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 00:43:53 +00:00

Select editor encapsulate (#2794)

This commit is contained in:
杨顺强
2019-01-09 14:39:17 +08:00
committed by Daniel Pan
parent 44af7136bf
commit 9c230cc5db
10 changed files with 123 additions and 49 deletions

View File

@@ -15,7 +15,7 @@ class Dirent {
this.size = Utils.bytesToSize(json.size);
this.starred = json.starred || false;
this.is_locked = json.is_locked || false;
this.lock_time = moment.unix(json.lock_time).fromNow();
this.lock_time = json.lock_time;
this.lock_owner= json.lock_owner;
this.locked_by_me = json.locked_by_me;
this.modifier_name = json.modifier_name;