Customizing files section table view

I’m trying to customize the table view of a files section. My file blueprint has a text field called title, which I’m able to display in a column called “Title”. However, Kirby shows the filename in its own column also called “Title”. If I want to change this column to “Filename”, how would I do that? Additionally, how do I disable the thumbnail icon here? Adding image: false under columns does not have any change.

Here’s my section blueprint for the above screenshot:

      files:
        type: files
        layout: table
        columns:
          title:
            label: Title
          size:
            label: Size
            value: "{{ file.niceSize }}"
            width: 1/6

What you can do:

      files:
        layout: table
        image: false  # this removes the preview images
        text: false # this remove the title column
        columns:
          text: # reproduce the title column as filename, linking to it
            label: Filename
            type: html
            value: <a href="{{file.panel.url}}">{{ file.filename }}</a>
          title:
            label: Title
          size:
            label: Size
            value: "{{ file.niceSize }}"
            width: 1/6

Thanks so much. Works like a charm.