make indentation consistent

This commit is contained in:
j3d1 2023-11-27 01:14:52 +01:00
parent d52575aa42
commit 9f63414ba2
27 changed files with 858 additions and 804 deletions

View file

@ -1,22 +1,23 @@
<template>
<div class="container-fluid px-xl-5 mt-3">
<div class="row">
<div class="col-xl-8 offset-xl-2">
<Table
:columns="['hash', 'uid']"
:items="loadedItems"
:keyName="'hash'"
v-slot="{ item }"
>
<div class="btn-group">
<button class="btn btn-danger" @click.stop="" >
<font-awesome-icon icon="trash"/> delete
</button>
</div>
</Table>
</div>
<div class="container-fluid px-xl-5 mt-3">
<div class="row">
<div class="col-xl-8 offset-xl-2">
<Table
:columns="['hash', 'uid']"
:items="loadedItems"
:keyName="'hash'"
v-slot="{ item }"
>
<div class="btn-group">
<button class="btn btn-danger" @click.stop="">
<font-awesome-icon icon="trash"/>
delete
</button>
</div>
</Table>
</div>
</div>
</div>
</div>
</template>
<script>
@ -24,10 +25,10 @@ import {mapActions, mapState} from 'vuex';
import Table from '@/components/Table';
export default {
name: 'Files',
components: {Table},
computed: mapState(['loadedItems']),
methods: mapActions([]),
name: 'Files',
components: {Table},
computed: mapState(['loadedItems']),
methods: mapActions([]),
};
</script>