chore: clean up

This commit is contained in:
liyasthomas
2022-02-08 05:47:02 +05:30
parent 93ccf5dcf6
commit c6ca4e19cd
34 changed files with 70 additions and 41 deletions

View File

@@ -111,6 +111,18 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.title')"
:shortcut="['X']"
@click.native="
() => {
exportCollection()
options.tippy().hide()
}
"
/>
<SmartItem
ref="deleteAction"
svg="trash-2"
@@ -123,18 +135,6 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.export')"
:shortcut="['X']"
@click.native="
() => {
exportCollection()
options.tippy().hide()
}
"
/>
</div>
</tippy>
</span>

View File

@@ -91,6 +91,18 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.title')"
:shortcut="['X']"
@click.native="
() => {
exportFolder()
options.tippy().hide()
}
"
/>
<SmartItem
ref="deleteAction"
svg="trash-2"
@@ -103,18 +115,6 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.export')"
:shortcut="['X']"
@click.native="
() => {
exportFolder()
options.tippy().hide()
}
"
/>
</div>
</tippy>
</span>

View File

@@ -112,6 +112,14 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.title')"
:shortcut="['X']"
:loading="exportLoading"
@click.native="exportCollection"
/>
<SmartItem
ref="deleteAction"
svg="trash-2"
@@ -124,14 +132,6 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.export')"
:shortcut="['X']"
:loading="exportLoading"
@click.native="exportCollection"
/>
</div>
</tippy>
</span>

View File

@@ -93,6 +93,14 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.title')"
:shortcut="['X']"
:loading="exportLoading"
@click.native="exportFolder"
/>
<SmartItem
ref="deleteAction"
svg="trash-2"
@@ -105,14 +113,6 @@
}
"
/>
<SmartItem
ref="exportAction"
svg="download"
:label="$t('export.export')"
:shortcut="['X']"
:loading="exportLoading"
@click.native="exportFolder"
/>
</div>
</tippy>
</span>