Fix popover attributes in member add dialog
Using popovers in the member table is broken in chrome 114, because of their new "popover" feature. Closes-Bug: #2024188 Change-Id: Idb009295495c1d8c732e792a72d58912e0e8d3a7 (cherry picked from commitchanges/03/889303/19cc4bfac58
) (cherry picked from commit6f990e09e7
) (cherry picked from commitbd1a329b46
) (cherry picked from commitb7785d206e
) (cherry picked from commit3eae62925e
) (cherry picked from commit2bca0ed072
) (cherry picked from commit4f7942ce32
)
parent
58cbf93412
commit
639842181f
|
@ -53,7 +53,7 @@
|
|||
ng-required="true" ng-disabled="row.allocatedMember"
|
||||
popover-placement="top" popover-append-to-body="true"
|
||||
popover-trigger="focus"
|
||||
ng-attr-popover="{$ memberDetailsForm[row.id + '-address'].$invalid && memberDetailsForm[row.id + '-address'].$dirty ? ctrl.ipError : '' $}">
|
||||
uib-popover="{$ memberDetailsForm[row.id + '-address'].$invalid && memberDetailsForm[row.id + '-address'].$dirty ? ctrl.ipError : '' $}">
|
||||
</div>
|
||||
<span ng-if="row.addresses.length === 1">{$ row.address.ip $}</span>
|
||||
<div ng-if="row.addresses.length > 1"
|
||||
|
@ -82,7 +82,7 @@
|
|||
ng-required="true" ng-disabled="row.allocatedMember"
|
||||
popover-placement="top" popover-append-to-body="true"
|
||||
popover-trigger="focus"
|
||||
ng-attr-popover="{$ memberDetailsForm[row.id + '-port'].$invalid && memberDetailsForm[row.id + '-port'].$dirty ? ctrl.portError : '' $}">
|
||||
uib-popover="{$ memberDetailsForm[row.id + '-port'].$invalid && memberDetailsForm[row.id + '-port'].$dirty ? ctrl.portError : '' $}">
|
||||
</div>
|
||||
</td>
|
||||
<td class="rsp-p1">
|
||||
|
@ -93,7 +93,7 @@
|
|||
ng-disabled="row.allocatedMember"
|
||||
popover-placement="top" popover-append-to-body="true"
|
||||
popover-trigger="focus"
|
||||
ng-attr-popover="{$ memberDetailsForm[row.id + '-weight'].$invalid && memberDetailsForm[row.id + '-weight'].$dirty ? ctrl.weightError : '' $}">
|
||||
uib-popover="{$ memberDetailsForm[row.id + '-weight'].$invalid && memberDetailsForm[row.id + '-weight'].$dirty ? ctrl.weightError : '' $}">
|
||||
</div>
|
||||
</td>
|
||||
<td class="actions_column">
|
||||
|
@ -125,7 +125,7 @@
|
|||
ng-disabled="row.allocatedMember"
|
||||
popover-placement="top" popover-append-to-body="true"
|
||||
popover-trigger="focus"
|
||||
ng-attr-popover="{$ memberDetailsForm[row.id + '-monitor-address'].$invalid && memberDetailsForm[row.id + '-monitor-address'].$dirty ? ctrl.ipError : '' $}">
|
||||
uib-popover="{$ memberDetailsForm[row.id + '-monitor-address'].$invalid && memberDetailsForm[row.id + '-monitor-address'].$dirty ? ctrl.ipError : '' $}">
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="col-lg-5 col-md-5 col-sm-5">
|
||||
|
@ -137,7 +137,7 @@
|
|||
ng-disabled="row.allocatedMember"
|
||||
popover-placement="top" popover-append-to-body="true"
|
||||
popover-trigger="focus"
|
||||
ng-attr-popover="{$ memberDetailsForm[row.id + '-monitor-port'].$invalid && memberDetailsForm[row.id + '-monitor-port'].$dirty ? ctrl.portError : '' $}">
|
||||
uib-popover="{$ memberDetailsForm[row.id + '-monitor-port'].$invalid && memberDetailsForm[row.id + '-monitor-port'].$dirty ? ctrl.portError : '' $}">
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="col-lg-5 col-md-5 col-sm-5">
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixed a bug when displaying the member list, some fields were not displayed
|
||||
correctly and new members could not be added.
|
||||
This bug affected only Google Chrome 114 and above.
|
Loading…
Reference in New Issue