blob: 8fdeca421688f5d7ec6b0829a2a6d1d9a0d72116 [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>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010028 <td class="label">Component</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053029 <td class="value">{{ settingsDetails?.fqComponent }}</td>
30 </tr>
31 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010032 <td class="label">Property</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053033 <td class="value">{{ settingsDetails?.prop }}</td>
34 </tr>
35 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010036 <td class="label">Type</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053037 <td class="value">{{ settingsDetails?.type }}</td>
38 </tr>
39 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010040 <td class="label">Value</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053041 <td class="value">{{ settingsDetails?.value }}</td>
42 </tr>
43 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010044 <td class="label">Default</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053045 <td class="value">{{ settingsDetails?.defValue }}</td>
46 </tr>
47 <tr>
Sean Condon8a8bc4b2020-05-21 16:14:54 +010048 <td class="label">Description</td>
Bhavesh Kumard0b8bae2018-07-31 16:56:43 +053049 <td class="value">{{ settingsDetails?.desc }}</td>
50 </tr>
51 </tbody>
52 </table>
53 </div>
54 </div>
55 </div>
56</div>