blob: eef4ba2f7ab42b8b3ba9d1a1df9100e01901aef1 [file] [log] [blame]
<!--
~ Copyright 2018-present Open Networking Foundation
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div id="settings-details-panel" class="floatpanel" [@settingsDetailsState]="id!=='' && !closed">
<div class="container">
<div class="top">
<onos-icon class="close-btn" classes="active-close" iconId="close" iconSize="20" (click)="close()"></onos-icon>
</div>
<div class="top-content">
<div class="settings-title-1">{{ settingsDetails?.component }}</div>
<div class="settings-title-2">{{ settingsDetails?.prop }}</div>
<div class="settings-props">
<table>
<tbody>
<tr>
<td class="label">Component: </td>
<td class="value">{{ settingsDetails?.fqComponent }}</td>
</tr>
<tr>
<td class="label">Property: </td>
<td class="value">{{ settingsDetails?.prop }}</td>
</tr>
<tr>
<td class="label">Type: </td>
<td class="value">{{ settingsDetails?.type }}</td>
</tr>
<tr>
<td class="label">Value: </td>
<td class="value">{{ settingsDetails?.value }}</td>
</tr>
<tr>
<td class="label">Default: </td>
<td class="value">{{ settingsDetails?.defValue }}</td>
</tr>
<tr>
<td class="label">Description: </td>
<td class="value">{{ settingsDetails?.desc }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>