mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-11 19:06:20 +00:00
Fix linting errors
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
v-model="changePasswordDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
class="my-3"
|
||||
v-bind="attrs"
|
||||
@@ -89,7 +89,7 @@
|
||||
>
|
||||
{{ snackbarText }}
|
||||
|
||||
<template v-slot:action="{ attrs }">
|
||||
<template #action="{ attrs }">
|
||||
<v-btn
|
||||
text
|
||||
v-bind="attrs"
|
||||
@@ -12,7 +12,7 @@
|
||||
v-model="registerUserDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
v-on="on"
|
||||
@@ -139,7 +139,7 @@
|
||||
>
|
||||
{{ snackbarText }}
|
||||
|
||||
<template v-slot:action="{ attrs }">
|
||||
<template #action="{ attrs }">
|
||||
<v-btn
|
||||
text
|
||||
v-bind="attrs"
|
||||
@@ -63,7 +63,7 @@
|
||||
</v-list-item>
|
||||
</v-list-item-group>
|
||||
</v-list>
|
||||
<template v-slot:append>
|
||||
<template #append>
|
||||
<v-btn
|
||||
block
|
||||
href="https://github.com/kaythomas0/noisedash"
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
>
|
||||
{{ snackbarText }}
|
||||
|
||||
<template v-slot:action="{ attrs }">
|
||||
<template #action="{ attrs }">
|
||||
<v-btn
|
||||
text
|
||||
v-bind="attrs"
|
||||
@@ -73,7 +73,7 @@
|
||||
v-model="profileDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
class="mx-3 my-3"
|
||||
@@ -127,7 +127,7 @@
|
||||
v-model="profileMoreDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
class="mx-3 my-3"
|
||||
@@ -686,7 +686,7 @@
|
||||
v-model="addSampleDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
class="mx-3 my-3 mb-5"
|
||||
@@ -746,7 +746,7 @@
|
||||
v-model="uploadSampleDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
class="mx-3 my-3 mb-5"
|
||||
@@ -810,7 +810,7 @@
|
||||
v-model="editSampleDialog"
|
||||
max-width="600px"
|
||||
>
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<template #activator="{ on, attrs }">
|
||||
<v-btn
|
||||
v-bind="attrs"
|
||||
class="mx-3 my-3 mb-5"
|
||||
@@ -926,7 +926,7 @@
|
||||
>
|
||||
{{ infoSnackbarText }}
|
||||
|
||||
<template v-slot:action="{ attrs }">
|
||||
<template #action="{ attrs }">
|
||||
<v-btn
|
||||
text
|
||||
v-bind="attrs"
|
||||
@@ -944,7 +944,7 @@
|
||||
>
|
||||
{{ errorSnackbarText }}
|
||||
|
||||
<template v-slot:action="{ attrs }">
|
||||
<template #action="{ attrs }">
|
||||
<v-btn
|
||||
text
|
||||
v-bind="attrs"
|
||||
@@ -1,5 +1,5 @@
|
||||
export default {
|
||||
name: 'Admin',
|
||||
name: 'Account',
|
||||
|
||||
data: () => ({
|
||||
currentUser: {},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
export default {
|
||||
name: 'Login',
|
||||
|
||||
data: () => ({
|
||||
valid: false,
|
||||
username: '',
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
export default {
|
||||
name: 'Register',
|
||||
|
||||
data: () => ({
|
||||
valid: false,
|
||||
name: '',
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<template>
|
||||
<Account />
|
||||
<AccountPage />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Account from '../components/Account'
|
||||
import AccountPage from '../components/AccountPage'
|
||||
|
||||
export default {
|
||||
name: 'AccountView',
|
||||
|
||||
components: {
|
||||
Account
|
||||
AccountPage
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<template>
|
||||
<Admin />
|
||||
<AdminPage />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Admin from '../components/Admin'
|
||||
import AdminPage from '../components/AdminPage'
|
||||
|
||||
export default {
|
||||
name: 'AdminView',
|
||||
|
||||
components: {
|
||||
Admin
|
||||
AdminPage
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<template>
|
||||
<Noise />
|
||||
<NoisePage />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Noise from '../components/Noise'
|
||||
import NoisePage from '../components/NoisePage'
|
||||
|
||||
export default {
|
||||
name: 'HomeView',
|
||||
|
||||
components: {
|
||||
Noise
|
||||
NoisePage
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<template>
|
||||
<Login />
|
||||
<LoginPage />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Login from '../components/Login'
|
||||
import LoginPage from '../components/LoginPage'
|
||||
|
||||
export default {
|
||||
name: 'LoginView',
|
||||
|
||||
components: {
|
||||
Login
|
||||
LoginPage
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<template>
|
||||
<Register />
|
||||
<RegisterPage />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Register from '../components/Register'
|
||||
import RegisterPage from '../components/RegisterPage'
|
||||
|
||||
export default {
|
||||
name: 'RegisterView',
|
||||
|
||||
components: {
|
||||
Register
|
||||
RegisterPage
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user