Index: chrome/browser/resources/md_bookmarks/store_client.js |
diff --git a/chrome/browser/resources/md_bookmarks/store_client.js b/chrome/browser/resources/md_bookmarks/store_client.js |
index 40b751a90e38f9f8d23abf0b1ea2515b3f03b484..eabda58a8ed0acd6e82b8b50ffbeae6f7e251177 100644 |
--- a/chrome/browser/resources/md_bookmarks/store_client.js |
+++ b/chrome/browser/resources/md_bookmarks/store_client.js |
@@ -86,7 +86,7 @@ cr.define('bookmarks', function() { |
// Avoid poking Polymer unless something has actually changed. Reducers |
// must return new objects rather than mutating existing objects, so |
// any real changes will pass through correctly. |
- if (oldValue == newValue || newValue == undefined) |
+ if (oldValue == newValue || newValue === undefined) |
return; |
this[watch.localProperty] = newValue; |