This is an automated email from the ASF dual-hosted git repository.

erikrit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new d041d3a  fix: certification icon order (#11881)
d041d3a is described below

commit d041d3a7f115746c878aa9b5243e62b4aa40c5c1
Author: Erik Ritter <[email protected]>
AuthorDate: Tue Dec 1 17:11:09 2020 -0800

    fix: certification icon order (#11881)
---
 superset-frontend/src/components/TableSelector.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/superset-frontend/src/components/TableSelector.tsx 
b/superset-frontend/src/components/TableSelector.tsx
index 395b5be..875c062 100644
--- a/superset-frontend/src/components/TableSelector.tsx
+++ b/superset-frontend/src/components/TableSelector.tsx
@@ -255,6 +255,9 @@ const TableSelector: FunctionComponent<TableSelectorProps> 
= ({
   function renderTableOption(option: any) {
     return (
       <TableLabel title={option.label}>
+        <small className="text-muted">
+          <i className={`fa fa-${option.type === 'view' ? 'eye' : 'table'}`} />
+        </small>
         {option.extra?.certification && (
           <CertifiedIconWithTooltip
             certifiedBy={option.extra.certification.certified_by}
@@ -262,9 +265,6 @@ const TableSelector: FunctionComponent<TableSelectorProps> 
= ({
             size={20}
           />
         )}
-        <small className="text-muted">
-          <i className={`fa fa-${option.type === 'view' ? 'eye' : 'table'}`} />
-        </small>
         {option.label}
       </TableLabel>
     );

Reply via email to