cara menyembunyikan ikon descending ascending di js data

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