Fix linting issues
This commit is contained in:
parent
7366131817
commit
a5939ffb50
21 changed files with 117 additions and 118 deletions
|
@ -53,18 +53,18 @@ import StarToggle from '@/components/Application/StarToggle'
|
|||
export default {
|
||||
components: {
|
||||
ApplicationTags,
|
||||
StarToggle,
|
||||
StarToggle
|
||||
},
|
||||
|
||||
props: {
|
||||
application: Object,
|
||||
display: String,
|
||||
id: Number,
|
||||
id: Number
|
||||
},
|
||||
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
starred: false,
|
||||
starred: false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
mode: String,
|
||||
},
|
||||
mode: String
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
export default {
|
||||
props: {
|
||||
level: String,
|
||||
type: String,
|
||||
},
|
||||
type: String
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -8,13 +8,13 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
application: Object,
|
||||
application: Object
|
||||
},
|
||||
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
starred: false
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -28,13 +28,13 @@ export default {
|
|||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
required: true,
|
||||
required: true
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
required: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
label: { type: String },
|
||||
},
|
||||
label: { type: String }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import ActionCard from '@/components/Environment/ActionCard'
|
||||
import ActionCardButton from '@/components/Environment/ActionCardButton'
|
||||
|
@ -81,7 +80,7 @@ import ActionCardButton from '@/components/Environment/ActionCardButton'
|
|||
export default {
|
||||
components: {
|
||||
ActionCard,
|
||||
ActionCardButton,
|
||||
ActionCardButton
|
||||
},
|
||||
|
||||
props: {
|
||||
|
@ -89,11 +88,11 @@ export default {
|
|||
isProduction: Boolean
|
||||
},
|
||||
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
active: 'code',
|
||||
active: 'code'
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -52,8 +52,8 @@
|
|||
export default {
|
||||
props: {
|
||||
environments: Object,
|
||||
id: String,
|
||||
},
|
||||
id: String
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -41,29 +41,29 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
hidden: Boolean,
|
||||
hidden: Boolean
|
||||
},
|
||||
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
selected: 0,
|
||||
items: [
|
||||
{
|
||||
subject: 'Deploying code',
|
||||
text: 'Drag a code element from one environment to another environment, which creates a new tag for the HEAD of that branch and then deploys the tag.',
|
||||
text: 'Drag a code element from one environment to another environment, which creates a new tag for the HEAD of that branch and then deploys the tag.'
|
||||
},
|
||||
{
|
||||
subject: 'Copying files',
|
||||
text: 'Drag a file element from one environment to another environment, which writes new files, overwrites existing files, and ignores files already in place.',
|
||||
text: 'Drag a file element from one environment to another environment, which writes new files, overwrites existing files, and ignores files already in place.'
|
||||
},
|
||||
{
|
||||
subject: 'Copying database',
|
||||
text: 'Drag a database element from one environment to another environment, which overwrites the target database(s). Dragging database elements with more than one database displays a dialog box that allows you to select the databases to deploy',
|
||||
text: 'Drag a database element from one environment to another environment, which overwrites the target database(s). Dragging database elements with more than one database displays a dialog box that allows you to select the databases to deploy'
|
||||
},
|
||||
{
|
||||
subject: 'Task Log',
|
||||
text: 'The Task Log is displayed below your Acquia Cloud environments and contains information on all of the actions taken against your application, including code deployments, configuration updates and environment specific changes.',
|
||||
},
|
||||
text: 'The Task Log is displayed below your Acquia Cloud environments and contains information on all of the actions taken against your application, including code deployments, configuration updates and environment specific changes.'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,11 +19,11 @@ import TaskLogItem from '@/components/Environment/TaskLog/TaskLogItem'
|
|||
|
||||
export default {
|
||||
components: {
|
||||
TaskLogItem,
|
||||
TaskLogItem
|
||||
},
|
||||
|
||||
props: {
|
||||
tasks: Array,
|
||||
tasks: Array
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
|
@ -54,12 +54,12 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
task: Object,
|
||||
task: Object
|
||||
},
|
||||
|
||||
data() {
|
||||
data () {
|
||||
return {
|
||||
open: false,
|
||||
open: false
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
hidden: Boolean,
|
||||
},
|
||||
hidden: Boolean
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -24,7 +24,7 @@ import _ from 'lodash'
|
|||
|
||||
export default {
|
||||
props: {
|
||||
links: Array,
|
||||
links: Array
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
links: Array,
|
||||
},
|
||||
links: Array
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
Reference in a new issue