diff --git a/spug_web/src/pages/deploy/request/Ext1Form.js b/spug_web/src/pages/deploy/request/Ext1Form.js
index 824b019..9e3a9ff 100644
--- a/spug_web/src/pages/deploy/request/Ext1Form.js
+++ b/spug_web/src/pages/deploy/request/Ext1Form.js
@@ -161,7 +161,14 @@ class Ext1Form extends React.Component {
Object.keys(branches || {}).map(b => {b})
) : (
Object.entries(tags || {}).map(([tag, info]) => (
- {`${tag} ${info.author} ${info.message}`}
+
+
+
+ {`${tag} ${info.author} ${info.message}`}
+
+ {info['date']}
+
+
))
)}
@@ -177,8 +184,14 @@ class Ext1Form extends React.Component {
diff --git a/spug_web/src/pages/deploy/request/SelectApp.js b/spug_web/src/pages/deploy/request/SelectApp.js
index e61f284..b8da056 100644
--- a/spug_web/src/pages/deploy/request/SelectApp.js
+++ b/spug_web/src/pages/deploy/request/SelectApp.js
@@ -52,12 +52,6 @@ class SelectApp extends React.Component {
store.addVisible = false
};
- handleRef = (el, id) => {
- if (el && !store.refs.hasOwnProperty(id)) {
- setTimeout(() => store.refs[id] = el.scrollWidth > el.clientWidth, 200)
- }
- };
-
render() {
const {env_id} = this.state;
let records = store.deploys.filter(x => x.env_id === Number(env_id));