Change columns in a structure field

Is is possible to change the text in the columns of a structure field? I have a pages field (tracks) and would like to display just the page title rather than the normal pages button in the column.

          entries:
            label: All entries
            type: structure
            columns:
              title:
              team:
              topic:
              track:

You can create your own Field previews with a plugin.

# site/plugins/my-pages-field-preview/index.js

panel.plugin('my/pages-field-preview', {
	components: {
		'k-pages-field-preview': {
			extends: 'k-pages-field-preview',
			template: `
				<ul v-if="value" class="k-pages-field-preview">
					<li v-for="page in value" :key="page.id">
						{{ page.text }}
					</li>
				</ul>
			`
		}
	}
});

thanks!