Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Sep 3, 2019
1 parent 79b1b6a commit a42386c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions resources/compiled/ignition.js

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion resources/js/components/Tabs/ContextTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class="tab-content-section"
>
<DefinitionListRow v-for="(value, key) in contextGroup" :key="key" :label="key">{{
value
value | upperFirst
}}</DefinitionListRow>
</DefinitionList>

Expand Down Expand Up @@ -51,6 +51,7 @@
import gitUrlParse from 'git-url-parse';
import DefinitionList from '../Shared/DefinitionList';
import DefinitionListRow from '../Shared/DefinitionListRow.js';
import upperFirst from 'lodash/upperFirst';
const predefinedKeys = {
laravel_version: 'Laravel version',
Expand Down Expand Up @@ -81,6 +82,10 @@ export default {
components: { DefinitionListRow, DefinitionList },
filters: {
upperFirst,
},
computed: {
git() {
return this.report.context.git;
Expand Down

0 comments on commit a42386c

Please sign in to comment.