blob: eef4ba2f7ab42b8b3ba9d1a1df9100e01901aef1 [file] [log] [blame]
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +05301<!--
2~ Copyright 2018-present Open Networking Foundation
3~
4~ Licensed under the Apache License, Version 2.0 (the "License");
5~ you may not use this file except in compliance with the License.
6~ You may obtain a copy of the License at
7~
8~ http://www.apache.org/licenses/LICENSE-2.0
9~
10~ Unless required by applicable law or agreed to in writing, software
11~ distributed under the License is distributed on an "AS IS" BASIS,
12~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13~ See the License for the specific language governing permissions and
14~ limitations under the License.
15-->
16<div id="settings-details-panel" class="floatpanel" [@settingsDetailsState]="id!=='' && !closed">
17 <div class="container">
18 <div class="top">
19 <onos-icon class="close-btn" classes="active-close" iconId="close" iconSize="20" (click)="close()"></onos-icon>
20 </div>
21 <div class="top-content">
22 <div class="settings-title-1">{{ settingsDetails?.component }}</div>
23 <div class="settings-title-2">{{ settingsDetails?.prop }}</div>
24 <div class="settings-props">
25 <table>
26 <tbody>
27 <tr>
28 <td class="label">Component: </td>
29 <td class="value">{{ settingsDetails?.fqComponent }}</td>
30 </tr>
31 <tr>
32 <td class="label">Property: </td>
33 <td class="value">{{ settingsDetails?.prop }}</td>
34 </tr>
35 <tr>
36 <td class="label">Type: </td>
37 <td class="value">{{ settingsDetails?.type }}</td>
38 </tr>
39 <tr>
40 <td class="label">Value: </td>
41 <td class="value">{{ settingsDetails?.value }}</td>
42 </tr>
43 <tr>
44 <td class="label">Default: </td>
45 <td class="value">{{ settingsDetails?.defValue }}</td>
46 </tr>
47 <tr>
48 <td class="label">Description: </td>
49 <td class="value">{{ settingsDetails?.desc }}</td>
50 </tr>
51 </tbody>
52 </table>
53 </div>
54 </div>
55 </div>
56</div>