diff --git a/frontend/src/components/files/ListingItem.vue b/frontend/src/components/files/ListingItem.vue
index 944ad9b1..f7733b87 100644
--- a/frontend/src/components/files/ListingItem.vue
+++ b/frontend/src/components/files/ListingItem.vue
@@ -191,7 +191,12 @@ export default {
action(overwrite, rename);
},
itemClick: function (event) {
- if (!(event.ctrlKey || event.metaKey) && this.singleClick && !this.$store.state.multiple) this.open();
+ if (
+ !(event.ctrlKey || event.metaKey) &&
+ this.singleClick &&
+ !this.$store.state.multiple
+ )
+ this.open();
else this.click(event);
},
click: function (event) {
diff --git a/frontend/src/components/prompts/Copy.vue b/frontend/src/components/prompts/Copy.vue
index 46166108..6e3d6805 100644
--- a/frontend/src/components/prompts/Copy.vue
+++ b/frontend/src/components/prompts/Copy.vue
@@ -12,7 +12,7 @@
diff --git a/frontend/src/components/prompts/Info.vue b/frontend/src/components/prompts/Info.vue
index d82b107e..a67f21a3 100644
--- a/frontend/src/components/prompts/Info.vue
+++ b/frontend/src/components/prompts/Info.vue
@@ -133,14 +133,13 @@ export default {
: this.req.items[this.selected[0]].isDir)
);
},
- resolution: function() {
+ resolution: function () {
if (this.selectedCount === 1) {
const selectedItem = this.req.items[this.selected[0]];
- if (selectedItem && selectedItem.type === 'image') {
+ if (selectedItem && selectedItem.type === "image") {
return selectedItem.resolution;
}
- }
- else if (this.req && this.req.type === 'image') {
+ } else if (this.req && this.req.type === "image") {
return this.req.resolution;
}
return null;
diff --git a/frontend/src/components/prompts/Move.vue b/frontend/src/components/prompts/Move.vue
index bbc19d36..87d13c65 100644
--- a/frontend/src/components/prompts/Move.vue
+++ b/frontend/src/components/prompts/Move.vue
@@ -11,7 +11,7 @@