Skip to content

Commit

Permalink
Merge branch 'feat/add-list-display-settings' of github.com:jasonhenr…
Browse files Browse the repository at this point in the history
…iquez/FreeTube into feat/add-list-display-settings
  • Loading branch information
kommunarr committed Oct 26, 2023
2 parents 145fd67 + 572c94f commit 92aea64
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
/>
</div>
<div
:id="sanitizedId"
v-show="showTitle"
:id="sanitizedId"
class="channelName"
>
{{ channelName }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</div>
</div>
<div
:id="sanitizedId"
v-show="showTitle"
:id="sanitizedId"
class="profileName"
>
{{ profileName }}
Expand Down
11 changes: 7 additions & 4 deletions src/renderer/views/Settings/Settings.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<template>
<div>
<template v-if="unlocked">
<div
<template
v-for="(settingsComponent, i) in sortedSettingsSectionComponents"
:key="i"
>
<hr v-if="i !== 0">
<hr
v-if="i !== 0"
:key="settingsComponent.type + 'hr'"
>
<component
:is="settingsComponent.type"
:key="settingsComponent.type + 'component'"
/>
</div>
</template>
</template>
<password-dialog
v-else
Expand Down

0 comments on commit 92aea64

Please sign in to comment.