Commit code with double quotes instead of single quotes

This commit is contained in:
Dmitry Yankowski
2020-02-24 21:06:23 -05:00
parent 3bd7c00038
commit 48100ead55
74 changed files with 3184 additions and 3184 deletions

View File

@@ -17,19 +17,19 @@
<div>
<button class="icon" @click="$emit('add-folder')" v-close-popover>
<i class="material-icons">create_new_folder</i>
<span>{{ $t('new_folder') }}</span>
<span>{{ $t("new_folder") }}</span>
</button>
</div>
<div>
<button class="icon" @click="$emit('edit-collection')" v-close-popover>
<i class="material-icons">create</i>
<span>{{ $t('edit') }}</span>
<span>{{ $t("edit") }}</span>
</button>
</div>
<div>
<button class="icon" @click="removeCollection" v-close-popover>
<i class="material-icons">delete</i>
<span>{{ $t('delete') }}</span>
<span>{{ $t("delete") }}</span>
</button>
</div>
</template>
@@ -48,7 +48,7 @@
/>
</li>
<li v-if="collection.folders.length === 0 && collection.requests.length === 0">
<label>{{ $t('collection_empty') }}</label>
<label>{{ $t("collection_empty") }}</label>
</li>
</ul>
<ul>
@@ -89,8 +89,8 @@ ul li {
<script>
export default {
components: {
folder: () => import('./folder'),
request: () => import('./request'),
folder: () => import("./folder"),
request: () => import("./request"),
},
props: {
collectionIndex: Number,
@@ -107,13 +107,13 @@ export default {
this.showChildren = !this.showChildren
},
removeCollection() {
if (!confirm('Are you sure you want to remove this Collection?')) return
this.$store.commit('postwoman/removeCollection', {
if (!confirm("Are you sure you want to remove this Collection?")) return
this.$store.commit("postwoman/removeCollection", {
collectionIndex: this.collectionIndex,
})
},
editFolder(collectionIndex, folder, folderIndex) {
this.$emit('edit-folder', { collectionIndex, folder, folderIndex })
this.$emit("edit-folder", { collectionIndex, folder, folderIndex })
},
},
}