Tab -> Space

pull/363/head
Varun Patil 2023-01-20 10:50:48 -08:00
parent 2f38074e4c
commit 0fae4d1ba9
3 changed files with 24 additions and 24 deletions

View File

@ -55,12 +55,12 @@ Memories is a *batteries-included* photo management solution for Nextcloud with
<route>memories.Page.main</route>
</navigation>
</navigations>
<repair-steps>
<post-migration>
<step>OCA\Memories\Migration\Repair</step>
</post-migration>
<install>
<step>OCA\Memories\Migration\Repair</step>
</install>
</repair-steps>
<repair-steps>
<post-migration>
<step>OCA\Memories\Migration\Repair</step>
</post-migration>
<install>
<step>OCA\Memories\Migration\Repair</step>
</install>
</repair-steps>
</info>

View File

@ -1,15 +1,15 @@
module.exports = {
plugins: [
'@babel/plugin-syntax-dynamic-import',
],
presets: [
[
'@babel/preset-env',
{
plugins: [
'@babel/plugin-syntax-dynamic-import',
],
presets: [
[
'@babel/preset-env',
{
"targets": "> 5%, not dead",
useBuiltIns: false,
modules: 'auto',
},
],
],
useBuiltIns: false,
modules: 'auto',
},
],
],
}

View File

@ -31,11 +31,11 @@ const CTE_FOLDERS = // CTE to get all folders recursively in the given top folde
), *PREFIX*cte_folders AS (
SELECT
fileid,
MIN(rootid) AS rootid
MIN(rootid) AS rootid
FROM
*PREFIX*cte_folders_all
GROUP BY
fileid
fileid
)';
const CTE_FOLDERS_ARCHIVE = // CTE to get all archive folders recursively in the given top folders
@ -317,8 +317,8 @@ trait TimelineQueryDays
// Get SQL
$CTE_SQL = \array_key_exists('cteFoldersArchive', $params) && $params['cteFoldersArchive']
? CTE_FOLDERS_ARCHIVE
: CTE_FOLDERS;
? CTE_FOLDERS_ARCHIVE
: CTE_FOLDERS;
// Add WITH clause if needed
if (false !== strpos($sql, 'cte_folders')) {