|
@@ -71,12 +71,16 @@ export default {
|
|
|
const $li = this.$refs.links_list.children[i];
|
|
|
if ($li.querySelector('input.url').value) {
|
|
|
let title = $li.querySelector('input.title').value;
|
|
|
- let url = $li.querySelector('input.url').value;
|
|
|
+ let url = $li.querySelector('input.url').value;
|
|
|
+ console.log(`title ${title}, url ${url}`);
|
|
|
list.push({
|
|
|
title: title,
|
|
|
uri: url
|
|
|
});
|
|
|
- tobesaved = (typeof this.links[i] === 'undefined' || title !== this.links[i].title || url !== this.links[i].url);
|
|
|
+ console.log(`title ${title} | this.links[i].title ${this.links[i].title}`);
|
|
|
+ if (!tobesaved) {
|
|
|
+ tobesaved = (typeof this.links[i] === 'undefined' || title !== this.links[i].title || url !== this.links[i].url);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
if (!tobesaved) {
|