diff --git a/src/forge/Main/CoderRootDirectory.js b/src/forge/Main/CoderRootDirectory.js
index 5a48c8184..46adbcf51 100644
--- a/src/forge/Main/CoderRootDirectory.js
+++ b/src/forge/Main/CoderRootDirectory.js
@@ -291,17 +291,17 @@ class CoderRootDirectory extends Component{
),
},{
- dataIndex:"message",
+ dataIndex:"commit",
width:"60%",
render:(text,item)=>
(
item.commit && item.commit.message ? {item.commit.message} :""
)
},{
- dataIndex:"created_at",
+ dataIndex:"commit",
width:"10%",
- render:(text)=>(
- text ? {Time(`${text}`)} :""
+ render:(text,item)=>(
+ item.commit && item.commit.time_from_now ? {item.commit.time_from_now} :""
)
}
];
diff --git a/src/forge/Version/New.jsx b/src/forge/Version/New.jsx
index 95047b95d..4bf1a9e07 100644
--- a/src/forge/Version/New.jsx
+++ b/src/forge/Version/New.jsx
@@ -13,7 +13,7 @@ export default ()=>{
& span{
margin:0px 15px;
color:#BBB;
- line-height:32px;
+ line-height:35px;
}
`;