| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html
|
| ===================================================================
|
| --- runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html (revision 32126)
|
| +++ runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html (working copy)
|
| @@ -6,12 +6,15 @@
|
| <template>
|
| <div>
|
| <template if="{{ (ref['type'] == 'null') }}">
|
| - {{ "null" }}
|
| + unexpected null
|
| </template>
|
| - <template if="{{ (ref['type'] != 'null') }}">
|
| - <a href="{{ url }}">{{ name }} </a>
|
| + <template if="{{ (ref['type'] == '@Null') }}">
|
| + {{ name }}
|
| </template>
|
| + <template if="{{ (ref['type'] != 'null') && ref['type'] != '@Null' }}">
|
| + <a href="{{ url }}">{{ name }} </a>
|
| + </template>
|
| </div>
|
| </template>
|
| <script type="application/dart" src="instance_ref.dart"></script>
|
| -</polymer-element>
|
| +</polymer-element>
|
|
|