Skip to content

Commit

Permalink
fix(frontend): Added a (temporary) patch for vuetify and its applicat…
Browse files Browse the repository at this point in the history
…ion service code

vuetifyjs/vuetify#13665
  • Loading branch information
Caceresenzo committed May 17, 2021
1 parent 38206b3 commit 072bcd7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions frontend/multi_drawer.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
41125c41125
< this.application[location] = (_a = {}, _a[uid] = size, _a);
---
> this.application[location][uid] = size; // = (_a = {}, _a[uid] = size, _a);
2 changes: 1 addition & 1 deletion frontend/pages/channels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:error="$fetchState.error"
@refresh="$fetch"
>
<v-main class="mini-drawer-offset fill-height">
<v-main class="fill-height">
<nuxt-child />
</v-main>
</channel-view-base>
Expand Down
4 changes: 2 additions & 2 deletions frontend/pages/channels/_id/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div v-if="channel" class="fill-height">
<v-app-bar app clipped-right class="mini-drawer-offset">
<v-app-bar app clipped-right>
<v-toolbar-title>{{ channel.name }}</v-toolbar-title>
<v-spacer />
<v-btn :input-value="true" icon>
Expand All @@ -26,7 +26,7 @@
</v-list>
</v-card>

<v-footer app height="72" inset class="mini-drawer-offset">
<v-footer app height="72" inset>
<v-text-field background-color="grey lighten-1" dense solo class="mt-2">
<template #append-outer>
<v-btn icon class="ml-2">
Expand Down
1 change: 1 addition & 0 deletions frontend/patch.sh
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
patch node_modules/@nuxt/vue-app/template/index.js back_twice.patch
patch node_modules/vuetify/dist/vuetify.js multi_drawer.patch

0 comments on commit 072bcd7

Please sign in to comment.