Chromium Code Reviews| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/instance_view.html |
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_view.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_view.html |
| index c4864c4fe4f6edac7ea38c451ed78feac84e31cc..9bce7e10a4fe7272b90db9caa9feac4aedffda85 100644 |
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_view.html |
| +++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_view.html |
| @@ -1,4 +1,5 @@ |
| <head> |
| + <link rel="import" href="class_ref.html"> |
| <link rel="import" href="observatory_element.html"> |
| <link rel="import" href="error_view.html"> |
| <link rel="import" href="field_ref.html"> |
| @@ -8,12 +9,10 @@ |
| <template> |
| <div class="row"> |
| <div class="col-md-8 col-md-offset-2"> |
| - <div class="panel panel-warning"> |
| + <div class="panel panel-warning"> |
| <div class="panel-heading"> |
| Instance of |
| - <a href="{{ app.locationManager.currentIsolateClassLink(instance['class']['id'])}}"> |
| - {{ instance['class']['user_name'] }} |
| - </a> |
| + <class-ref app="{{ app }}" ref="{{ instance['class'] }}"></class-ref> |
| </div> |
| <div class="panel-body"> |
| <template if="{{ instance['error'] == null }}"> |
| @@ -29,7 +28,7 @@ |
| <tbody> |
| <tr template repeat="{{ field in instance['fields'] }}"> |
| <td><field-ref app="{{ app }}" field="{{ field }}"></field-ref></td> |
| - <td><instance-ref app="{{ app }}" instance="{{ field['value'] }}"></instance-ref></td> |
| + <td><instance-ref app="{{ app }}" instance="{{ field['value'] }}"></instance-ref></td> |
|
turnidge
2013/12/19 20:39:29
instance= & field= seems suspicious here.
|
| </tr> |
| </tbody> |
| </table> |