Skip to content

Commit

Permalink
[Landing, ModConfig] Disable unnecessary components in container mode
Browse files Browse the repository at this point in the history
  • Loading branch information
m4heshd committed Mar 13, 2024
1 parent bbb0a6a commit 1c1dea5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/ModConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
v-model="modConfig.data.dlPath"
type="text"
autocomplete="off"
:disabled="store.appMeta.isContainer"
>
<label>Location (directory)</label>
<i>folder_open</i>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<button
class="square round large"
title="Search fight pass library"
title="Search Fight Pass library"
:disabled="busy"
@click="searchVOD(txtLink)"
>
Expand Down Expand Up @@ -82,6 +82,7 @@
<h5>Downloads {{ store.activeDownloads ? `(${store.activeDownloads} active)` : '' }}</h5>
<div class="vod-section__header__actions">
<button
v-if="!store.appMeta.isContainer"
class="border circle small"
title="Open downloads directory"
@click="onBtnOpenDLDir"
Expand Down

0 comments on commit 1c1dea5

Please sign in to comment.