Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: chrome/browser/resources/md_history/history_list.html

Issue 1974713002: [MD History] Unify query state in history-app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@secondary_toolbar
Patch Set: closure Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/history_list.html
diff --git a/chrome/browser/resources/md_history/history_list.html b/chrome/browser/resources/md_history/history_list.html
index b7c28687a16b27e4f7b8686118a3a03c72903474..1b92a641d6680fd6aa022387e6013c1dfb79f6cf 100644
--- a/chrome/browser/resources/md_history/history_list.html
+++ b/chrome/browser/resources/md_history/history_list.html
@@ -33,7 +33,7 @@
</style>
<div id="no-results" class="centered-message"
hidden$="{{hasResults(historyData.length)}}">
- {{noResultsMessage_(searchTerm, loading_)}}
+ {{noResultsMessage_(searchedTerm, querying)}}
</div>
<iron-list items="{{historyData}}" as="item" id="infinite-list"
hidden$="{{!hasResults(historyData.length)}}">
@@ -44,7 +44,7 @@
is-card-start="[[isCardStart_(item, index, historyData.length)]]"
is-card-end="[[isCardEnd_(item, index, historyData.length)]]"
has-time-gap="[[needsTimeGap_(item, index, historyData.length)]]"
- search-term="[[searchTerm]]"
+ search-term="[[searchedTerm]]"
number-of-items="[[historyData.length]]">
</history-item>
</template>

Powered by Google App Engine
This is Rietveld 408576698