Skip to content

Commit

Permalink
Fix semantic of html for source directory
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Mar 6, 2024
1 parent 643cd40 commit 11ed37b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Settings/PhotosSourceLocationsSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
-->

<template>
<div class="photos-locations">
<ul>
<div class="photos-locations-container">
<div class="photos-locations">
<PhotosFolder :path="photosSourceFolder" :root-folder-label="t('photos', 'All folders')" :root-folder-icon="FolderMultiple" />
<!-- TODO: uncomment when SEARCH on multiple folders is implemented. -->
<!-- <li v-for="(source, index) in photosSourceFolder"
Expand All @@ -32,7 +32,7 @@
:root-folder-label="t('photos', 'All folders')"
@remove-folder="removeSourceFolder(index)" />
</li> -->
</ul>
</div>

<NcButton :aria-label="t('photos', 'Choose a source Photos for the timelines')"
@click="debounceAddSourceFolder">
Expand Down Expand Up @@ -116,12 +116,12 @@ export default defineComponent({
</script>

<style lang="scss" scoped>
.photos-locations {
.photos-locations-container {
display: flex;
flex-direction: column;
width: fit-content;

ul {
.photos-locations {
margin-bottom: 16px;
}
}
Expand Down

0 comments on commit 11ed37b

Please sign in to comment.