Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
Karasiq committed Aug 1, 2018
1 parent 3a495c7 commit 56f3f8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ class FileListItem(file: File, selectedFile: Var[Option[File]])(implicit context
),
GridSystem.col(9).asDiv(
GridSystem.row(
GridSystem.col(9).asDiv(Rx[Frag](if (selectedFile().contains(file)) b(file.path.name) else file.path.name)),
GridSystem.col(9).asDiv(Rx[Frag](if (selectedFile().contains(file)) b(file.path.name) else span(file.path.name, cursor.pointer))),
GridSystem.col(3).asDiv(
GridSystem.mkRow(MemorySize.toString(file.checksum.size)),
GridSystem.mkRow(context.timeFormat.timestamp(file.timestamp.lastModified)),

0 comments on commit 56f3f8e

Please sign in to comment.