Add Filename Colum to Media Library

Found the solution:

I just changed “name” to “Filename” on this function:

// Register the column as sortable & sort by name
function filename_column_sortable( $cols ) {
    $cols["filename"] = "Filename";
    return $cols;
}