fix some lint errors
This commit is contained in:
parent
19fdb1d08f
commit
62ff8321f1
|
@ -76,16 +76,11 @@ export default {
|
|||
} else {
|
||||
path += "&step=" + this.step;
|
||||
}
|
||||
let res = await fetch(apiurl(path))
|
||||
.then(r => {
|
||||
if (r.status == 200) {
|
||||
return r.text();
|
||||
}
|
||||
return "";
|
||||
})
|
||||
.then(data => {
|
||||
let res = await fetch(apiurl(path));
|
||||
if (res.status == 200) {
|
||||
let data = await res.text();
|
||||
this.items.push(this.formatter.ansi_to_html(data));
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
|
||||
|
||||
<script>
|
||||
import { apiurl, loginurl, fetch } from "@/util/auth";
|
||||
|
||||
export default {
|
||||
name: "LoginForm",
|
||||
props: {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { apiurl, fetch } from "@/util/auth";
|
||||
import vars from "@/components/vars";
|
||||
|
||||
export default {
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
|
||||
|
||||
<script>
|
||||
import { apiurl, loginurl, fetch } from "@/util/auth";
|
||||
|
||||
export default {
|
||||
name: "RegisterForm",
|
||||
props: {
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { apiurl, fetch } from "@/util/auth";
|
||||
import { fetchRun, fetchTask } from "@/util/data.js";
|
||||
|
||||
import Collapse from "@/components/collapse.vue";
|
||||
|
|
|
@ -72,8 +72,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { apiurl, fetch } from "@/util/auth";
|
||||
|
||||
export default {
|
||||
components: {},
|
||||
name: "vars",
|
||||
|
|
|
@ -10,8 +10,6 @@ import { getUser } from "@/util/auth";
|
|||
|
||||
Vue.use(Vue2Filters);
|
||||
|
||||
const USER = 'user';
|
||||
|
||||
// TODO(sgotti) use vuex for login/logout
|
||||
new Vue({
|
||||
router,
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
<template></template>
|
||||
|
||||
<script>
|
||||
import { logout } from "@/util/auth";
|
||||
|
||||
|
|
|
@ -25,11 +25,9 @@
|
|||
<script>
|
||||
import { ownerLink, ownerProjectsLink } from "@/util/link.js";
|
||||
|
||||
import projects from "@/components/projects.vue";
|
||||
|
||||
export default {
|
||||
name: "Org",
|
||||
components: { projects },
|
||||
components: {},
|
||||
props: {
|
||||
orgname: String
|
||||
},
|
||||
|
|
|
@ -59,7 +59,6 @@
|
|||
|
||||
|
||||
<script>
|
||||
import { apiurl, fetch } from "@/util/auth";
|
||||
import {
|
||||
ownerLink,
|
||||
ownerProjectsLink,
|
||||
|
|
Loading…
Reference in New Issue