Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
stevenkoppens
Partner - Contributor III
Partner - Contributor III

Bug in current-selections bar: Wrong LUI Icon

Hi all,

Using the latest version of Qlik, it shows a strange icon in the current selections bar when using mashups. It shows the Lui comment icon instead of the normal search icon:

currentselections.PNG

Workaround:

By changing the text alignment on the parrent div from center to left, weirdly enough, it displays the correct icon (except wrongly aligned).

Any one else encountered the same issue?

Kind regards,

Steven

Labels (4)
1 Solution

Accepted Solutions
stevenkoppens
Partner - Contributor III
Partner - Contributor III
Author

Still not sure what the exact issue is, but found a working fix, using this CSS:

.qv-subtoolbar-button>.lui-icon--search{

            width: auto !important;

        }


        .qv-subtoolbar-button>.label{

            display: none;

        }

View solution in original post

3 Replies
dionverbeke
Partner - Creator III
Partner - Creator III

I am running the latest version and I don't have that issues. must be some of your styles intervening. It helps by disabling styles on demand in chrome to find out which one...

stevenkoppens
Partner - Contributor III
Partner - Contributor III
Author

Thanks for the quick response.

So the strange thing is, if I create a new mashup using a template version in the dev hub and I just insert the selection bar in an empty placeholder, I still see the same (wrong) icon.

But this made me think, maybe it's my browser. So I tried IE and I get the search icon! But it's still strange, because there are these dots behind the search icon:

currentselections IE.PNG

I presume you don't see these dots?

Kind regards,

Steven

stevenkoppens
Partner - Contributor III
Partner - Contributor III
Author

Still not sure what the exact issue is, but found a working fix, using this CSS:

.qv-subtoolbar-button>.lui-icon--search{

            width: auto !important;

        }


        .qv-subtoolbar-button>.label{

            display: none;

        }