Skip to content

Commit

Permalink
update deps, format
Browse files Browse the repository at this point in the history
  • Loading branch information
xyven1 committed Nov 25, 2023
1 parent 5fa1ccf commit 60ba997
Show file tree
Hide file tree
Showing 7 changed files with 3,260 additions and 2,409 deletions.
5,102 changes: 2,847 additions & 2,255 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/src/plugins/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import "vuetify/styles";

// Composables
import { createVuetify } from "vuetify";
import { aliases, mdi } from "vuetify/iconsets/mdi-svg";
import * as components from "vuetify/components";
import { aliases, mdi } from "vuetify/iconsets/mdi-svg";
import * as labsComponents from "vuetify/labs/components";

// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
Expand Down
18 changes: 13 additions & 5 deletions ui/src/views/Entertainment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,27 @@
<VRow class="flex-grow-0" justify="center">
<VCol style="max-width: 300px">
<VCard
title="TV Control" :loading="movingTV" class=""
title="TV Control"
:loading="movingTV"
class=""
max-width="300px"
>
<template #actions>
<VBtn
color="primary" variant="tonal" class="flex-grow-1"
:disabled="movingTV" @click="setTVPosition(TVPosition.Up)"
color="primary"
variant="tonal"
class="flex-grow-1"
:disabled="movingTV"
@click="setTVPosition(TVPosition.Up)"
>
Up
</VBtn>
<VBtn
color="primary" variant="tonal" class="flex-grow-1"
:disabled="movingTV" @click="setTVPosition(TVPosition.Down)"
color="primary"
variant="tonal"
class="flex-grow-1"
:disabled="movingTV"
@click="setTVPosition(TVPosition.Down)"
>
Down
</VBtn>
Expand Down
9 changes: 3 additions & 6 deletions ui/src/views/Home.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
<template>
<VContainer class="fill-height justify-center align-center">
<span
class="text-h3 text-center"
>
<span class="text-h3 text-center">
Welcome. Navigate to another page to do stuff
</span>
</span>
</VContainer>
</template>

<script lang="ts" setup>
</script>
<script lang="ts" setup></script>
Loading

0 comments on commit 60ba997

Please sign in to comment.