Skip to content

Commit 515cd27

Browse files
committed
Merge branch 'master' into stable
2 parents d29a377 + f33c9a9 commit 515cd27

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ deploy:
5353
skip_cleanup: true
5454
on:
5555
branch: master
56+
- provider: releases
57+
name: $(unzip -qc build/script-server.zip version.txt)
58+
api_key: "$GITHUB_TOKEN"
59+
file: build/script-server.zip
60+
skip_cleanup: true
61+
on:
62+
branch: stable
5663
- provider: script
5764
script: tools/deploy_docker.sh
5865
skip_cleanup: true

web-src/js/admin/AdminApp.vue

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<template>
22
<div class="admin-page">
33
<div class="page-title teal z-depth-1">
4+
<a class="btn-flat left home-button" href="index.html">
5+
<i class="material-icons white-text">home</i>
6+
</a>
47
<ul class="tabs tabs-fixed-width" ref="tabs">
58
<li class="tab">
69
<router-link to="/logs">Logs</router-link>
@@ -19,8 +22,8 @@
1922
import Vue from 'vue';
2023
import Vuex, {mapActions, mapState} from 'vuex';
2124
import executions from '../history/executions-module';
22-
import scripts from './scripts-config/scripts-module';
2325
import scriptConfig from './scripts-config/script-config-module';
26+
import scripts from './scripts-config/scripts-module';
2427
2528
Vue.use(Vuex);
2629
@@ -130,4 +133,15 @@
130133
flex: 1 1 0;
131134
overflow-y: auto;
132135
}
136+
137+
.home-button {
138+
height: 100%;
139+
padding-left: 20px;
140+
padding-right: 20px;
141+
}
142+
143+
.home-button i {
144+
font-size: 1.8em;
145+
line-height: 1.8em;
146+
}
133147
</style>

0 commit comments

Comments
 (0)