diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-05-31 16:55:56 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people02.fedoraproject.org> | 2011-05-31 22:11:24 +0000 |
commit | 007f6dd4c237a64ea5b38792396d0db0d1704809 (patch) | |
tree | 9bdc5e1c884a23cbd907cc8670acb477e47dc5fe | |
parent | b01220cc38b2bcaeb35931bda1dc9a258ff3850b (diff) | |
download | freeipa-007f6dd4c237a64ea5b38792396d0db0d1704809.tar.gz freeipa-007f6dd4c237a64ea5b38792396d0db0d1704809.tar.xz freeipa-007f6dd4c237a64ea5b38792396d0db0d1704809.zip |
Fixed pagination problem.
The association table needs to be emptied if there is no entries.
-rw-r--r-- | install/ui/associate.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/associate.js b/install/ui/associate.js index ad2da5216..73a19021a 100644 --- a/install/ui/associate.js +++ b/install/ui/associate.js @@ -993,6 +993,7 @@ IPA.association_facet = function (spec) { var pkeys = that.record[that.name]; if (!pkeys || !pkeys.length) { + that.table.empty(); that.table.summary.text('No entries.'); return; } |