From 007f6dd4c237a64ea5b38792396d0db0d1704809 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Tue, 31 May 2011 16:55:56 -0500 Subject: Fixed pagination problem. The association table needs to be emptied if there is no entries. --- install/ui/associate.js | 1 + 1 file changed, 1 insertion(+) (limited to 'install/ui/associate.js') diff --git a/install/ui/associate.js b/install/ui/associate.js index ad2da521..73a19021 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; } -- cgit