Customised tooltip

Hi,

We have one tooltip option from backend, but seems it’s broken after the update. Usually the option has to come under the Catelogues-> Properties → than any option. And we we click the option a window will appear with Name, Label, Image , Position and Tooltip. But after the current update it’s not properly come inside the window. The tooltip field appeared to common to all option.
Below is the implementation:

import template from ‚./sw-property-option-list.html.twig‘;

Component.override(‚sw-property-option-list‘, {
template,

methods: {
    getGroupColumns() {
        const columns = this.$super('getGroupColumns');

        columns.push({
            property: 'customFields.property_value_description_translation',
            dataIndex: 'customFields.property_value_description_translation',
            label: this.$t('property-value-description.descriptionLabel'),
            allowResize: true,
            align: 'left'
        });

        return columns;
    },

Kindly give suggestions

Thanks