Fixed last release file issue

trimmed logs in tables some more
This commit is contained in:
Tim Shannon 2016-04-25 21:39:11 +00:00
parent 21ebb286a6
commit a3a7c4f66b
3 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -121,7 +121,7 @@ func (ds *Store) LastRelease() (*Release, error) {
err := ds.bolt.View(func(tx *bolt.Tx) error {
c := tx.Bucket([]byte(bucketReleases)).Cursor()
_, v := c.Last()
_, v := c.First() // this is confusing
if v == nil {
return ErrNotFound
}

View File

@ -177,7 +177,7 @@
<td>
<a href="/project/{{.id}}/{{.lastLog.version}}">{{.lastLog.version}}</a>
</td>
<td title="{{.lastLog.log}}">{{#if .lastLog.log && .lastLog.length > 200}}{{.lastLog.log.substring(0,200)}}...{{else}}{{.lastLog.log}}{{/if}}</td>
<td title="{{.lastLog.log}}">{{#if .lastLog.log && .lastLog.length > 100}}{{.lastLog.log.substring(0,100)}}...{{else}}{{.lastLog.log}}{{/if}}</td>
<td>
<a href="/project/{{.id}}/{{.releaseVersion}}">{{.releaseVersion}}</a>
</td>
@ -213,7 +213,7 @@
<a href="/project/{{project.id}}/{{.version}}">{{.version}}</a>
</td>
<td>{{.stage}}</td>
<td title="{{.log}}">{{#if .log && .log.length > 200}}{{.log.substring(0,200)}}...{{else}}{{.log}}{{/if}}</td>
<td title="{{.log}}">{{#if .log && .log.length > 100}}{{.log.substring(0,100)}}...{{else}}{{.log}}{{/if}}</td>
<td>
{{#if releases[project.id + .version]}}
<a href="/release/{{project.id}}/{{.version}}?file">{{releases[project.id + .version].fileName}}</a>