Comment masquer les icônes descendant ascendant dans JS DataTable

add this css on the top of page or in css file.

use respective class

.no-sort::after { 
	opacity: 0;
    content:unset;
}

.no-sort { 
  	opacity: 0;
    content:unset; 
}
Awful Angelfish