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

Unified Diff: runtime/observatory/lib/src/elements/field_view.html

Issue 2243983002: Avoid polymer partial initialization of bindings (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/field_view.html
diff --git a/runtime/observatory/lib/src/elements/field_view.html b/runtime/observatory/lib/src/elements/field_view.html
index 8b785381b525083be976e90072d7065e6011a930..1e497bbb8fb705c31d9ba095c9c930c405e2ed78 100644
--- a/runtime/observatory/lib/src/elements/field_view.html
+++ b/runtime/observatory/lib/src/elements/field_view.html
@@ -60,7 +60,8 @@
<template if="{{ field.guardClass == 'unknown' }}">
none
</template>
- <template if="{{ field.guardClass != 'unknown' &&
+ <template if="{{ field.guardClass != null &&
+ field.guardClass != 'unknown' &&
field.guardClass != 'dynamic' }}">
<class-ref ref="{{ field.guardClass }}"></class-ref>
<template if="{{ field.guardNullable }}">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698