Skip to content

Commit

Permalink
feat: auto import
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jun 7, 2023
1 parent 445eed7 commit eeb707d
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 9 deletions.
3 changes: 1 addition & 2 deletions src/components/Admin/AdminUsers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
cols='12'
class='ma-0 pa-0'
>
<AdminUserRowVue :user='item.user' :sessions='item.sessions' @update='emit("update")' />
<AdminUserRow :user='item.user' :sessions='item.sessions' @update='emit("update")' />
<v-divider class='' v-if='(index!== users.length -1)'/>
</v-col>
</v-row>
Expand All @@ -42,7 +42,6 @@

<script setup lang="ts">
import { convert_bytes } from '@/vanillaTS/convert_bytes';
import AdminUserRowVue from './AdminUserRow.vue';
import type { TAdminUserAndSessions } from '@/types';
const total_monthly_bandwidth = computed((): string => {
Expand Down
2 changes: 0 additions & 2 deletions src/components/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ import { FrontEndNames, FrontEndRoutes } from '@/types/enum_routes';
import { mdiAccountCircle, mdiMenu } from '@mdi/js';
import { notAuthenticatedLinks } from '@/vanillaTS/NavigationLinks';
import { useDisplay } from 'vuetify';
import OfflineAlert from '@/components/OfflineAlert.vue';
import StaticPi from '@/components/StaticPi.vue';
const { lgAndUp } = useDisplay();
Expand Down
1 change: 0 additions & 1 deletion src/components/AppDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
import { mdiCellphoneInformation, mdiCheck, mdiClose, mdiEyeOff, mdiEye, mdiLock, mdiTimerOutline } from '@mdi/js';
import { token_regex } from '@/vanillaTS/globalConst';
import { useDisplay } from 'vuetify';
import ActionButton from '@/components/Buttons/ActionButton.vue';
import type { TConfirmMethod, TDialogFields, u } from '@/types';
const { lgAndUp, mdAndUp, smAndDown } = useDisplay();
Expand Down
2 changes: 0 additions & 2 deletions src/components/AppFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,4 @@
</template>

<script setup lang='ts'>
import FooterText from '@/components/FooterText.vue';
</script>
1 change: 0 additions & 1 deletion src/components/AppNavDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ import { axios_authenticatedUser } from '@/services/axios';
import { dialoger } from '@/services/dialog';
import { useDisplay } from 'vuetify';
import { mdiChevronDoubleLeft, mdiChevronDoubleRight, mdiClose, mdiLoginVariant } from '@mdi/js';
import FooterText from '@/components/FooterText.vue';
import type { TNavigationLink } from '@/types';
const { mdAndUp, mdAndDown, lgAndUp } = useDisplay();
Expand Down
1 change: 0 additions & 1 deletion src/components/Card/DocumentationCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

<script setup lang="ts">
import { useDisplay } from 'vuetify';
import AppCard from '@/components/Card/AppCard.vue';
const { mobile } = useDisplay();
Expand Down

0 comments on commit eeb707d

Please sign in to comment.