Skip to content

Commit 05b1229

Browse files
committed
changed url
1 parent c3a3ec8 commit 05b1229

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/renderer/views/Emails/Detail.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</div>
88
<!-- Summary -->
99
<div class="detail-page-header-summary">
10-
<span v-text="form.email" class="url" />
11-
<!-- <span v-text="form.account_name" class="email" /> -->
10+
<span v-text="form.title" class="url" />
11+
<span v-text="form.email" class="email" />
1212
</div>
1313

1414
<!-- Copy -->
@@ -171,8 +171,8 @@ export default {
171171
computed: {
172172
...mapState('Emails', ['Detail', 'ItemList']),
173173
174-
bankAccountCopyContent() {
175-
return `Email: ${this.form.bank_name}\n`
174+
emailCopyContent() {
175+
return `Title: ${this.form.title}\nEmail: ${this.form.email}\n`
176176
}
177177
}
178178
}

src/renderer/views/Emails/store.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export default {
3636
},
3737

3838
async Create({ rootState }, data) {
39+
console.log(data)
3940
data.email = this._vm.$helpers.encrypt(data.email, rootState.master_hash)
4041
data.password = this._vm.$helpers.encrypt(data.password, rootState.master_hash)
4142
await EmailsService.Create(data)

src/renderer/views/Notes/Detail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default {
152152
computed: {
153153
...mapState('Notes', ['Detail', 'ItemList']),
154154
155-
loginCopyContent() {
155+
noteCopyContent() {
156156
return `Title: ${this.form.title}\nNote: ${this.form.note}\n`
157157
}
158158
}

0 commit comments

Comments
 (0)