Merge "[Winscope] Add pretty-printing for properties view" into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-03-12 03:05:53 +00:00
committed by Android (Google) Code Review

View File

@@ -37,7 +37,7 @@
<input id="filter" type="search" placeholder="Filter..." v-model="propertyFilterString" />
</div>
</md-whiteframe>
<tree-view class="data-card" :item="selectedTree" :filter="propertyFilter" />
<tree-view class="pre-line-data-card" :item="selectedTree" :filter="propertyFilter" />
</md-card>
</md-card-content>
</template>
@@ -229,4 +229,10 @@ export default {
max-height: 48em;
}
.pre-line-data-card {
overflow: auto;
max-height: 48em;
white-space: pre-line;
}
</style>