| Index: runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/instance_ref.html
|
| diff --git a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/instance_ref.html b/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/instance_ref.html
|
| index 0c36ff752433b7ccf4c98f471b73a856f226d94a..1c8747e12d6f0dcc208f6a95d38c39345538880b 100644
|
| --- a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/instance_ref.html
|
| +++ b/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/instance_ref.html
|
| @@ -22,11 +22,12 @@
|
| <div title="{{ hoverText }}">{{ ref.valueAsString }}</div>
|
| </template>
|
|
|
| - <template if="{{ ref.isString || ref.isBool || ref.isInt || ref.isDouble || ref.isNull }}">
|
| + <template if="{{ ref.isString || ref.isBool || ref.isInt ||
|
| + ref.isDouble || ref.isNull }}">
|
| <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a>
|
| </template>
|
|
|
| - <template if="{{ ref.isType }}">
|
| + <template if="{{ ref.isAbstractType }}">
|
| <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a>
|
| </template>
|
|
|
| @@ -37,7 +38,7 @@
|
| </a>
|
| </template>
|
|
|
| - <template if="{{ ref.isInstance && !ref.isClosure }}">
|
| + <template if="{{ ref.isPlainInstance }}">
|
| <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em></a>
|
| <curly-block callback="{{ expander() }}">
|
| <div class="memberList">
|
|
|