Skip to content

Commit

Permalink
new app icon. Button back home disabled while processing
Browse files Browse the repository at this point in the history
  • Loading branch information
dawalberto committed Mar 14, 2021
1 parent 62f60b1 commit 0ca32c7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 9 additions & 6 deletions src/views/Union.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<template>
<div>
<img
@click="backHome"
src="@/assets/images/home.svg"
alt="home"
class="w-10 h-10 mt-6 ml-6 cursor-pointer"
/>
<button @click="backHome" :disabled="backHomeDisabled">
<img
src="@/assets/images/home.svg"
alt="home"
class="w-10 h-10 mt-6 ml-6 cursor-pointer"
/>
</button>
<div
class="absolute top-2/4 left-2/4 transform -translate-x-2/4 -translate-y-2/4"
>
Expand Down Expand Up @@ -89,6 +90,7 @@ export default {
processing: false,
joined: false,
runProcessManually: false,
backHomeDisabled: true,
oneFileValueReadyToWrite: '',
manyFilesValueReadyToWrite: '',
manyFilesNameReadyToWrite: '',
Expand Down Expand Up @@ -285,6 +287,7 @@ export default {
}
this.processing = false
this.joined = true
this.backHomeDisabled = false
this.runProcessManually = false
})
.catch(error => {
Expand Down
5 changes: 5 additions & 0 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
module.exports = {
pluginOptions: {
electronBuilder: {
builderOptions: {
win: {
icon: './icon.png'
}
},
nodeIntegration: true
}
}
Expand Down

0 comments on commit 0ca32c7

Please sign in to comment.