Skip to content

Commit

Permalink
refactor: remove unused dark attribute in v-card and v-app elements
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou committed Dec 11, 2023
1 parent ff6f32f commit 3e8f0eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-app :dark="darkAttribute" :style="cssVars">
<v-app :style="cssVars">
<template v-if="socketIsConnected && guiIsReady">
<the-sidebar />
<the-topbar />
Expand Down
2 changes: 1 addition & 1 deletion src/components/TheConnectingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<template>
<v-dialog v-model="showDialog" persistent :width="400">
<v-card :dark="darkAttribute">
<v-card>
<v-toolbar flat dense>
<v-toolbar-title>
<span class="subheading">
Expand Down
2 changes: 1 addition & 1 deletion src/components/TheUpdateDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<template>
<v-dialog :value="application !== ''" persistent max-width="800" class="mx-0">
<v-card :dark="darkAttribute" :loading="!complete">
<v-card :loading="!complete">
<template slot="progress">
<v-progress-linear color="primary" indeterminate></v-progress-linear>
</template>
Expand Down

0 comments on commit 3e8f0eb

Please sign in to comment.