mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
16 lines
807 B
HTML
16 lines
807 B
HTML
<!--
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
-->
|
|
<div class="grid-container {{gridDisplayLayout}}" style="position: absolute; height: 100%; width: 100%;" [style.display]="_loading ? 'none':'grid'">
|
|
<ng-template ngFor let-item [ngForOf]="displayProperties">
|
|
<div class="property {{propertyLayout}}" style="display:flex">
|
|
<div class="propertyName">{{item.displayName}}</div>
|
|
<div class="splitter">:</div>
|
|
<div class="propertyValue">{{item.value}}</div>
|
|
</div>
|
|
</ng-template>
|
|
</div>
|