getSortBy: function()

in webapp/components/flow-design-system/fds-demo.js [742:752]


    getSortBy: function () {
        let sortByColumnLabel;
        const arrayLength = this.dropletColumns.length;
        for (let i = 0; i < arrayLength; i++) {
            if (this.dropletColumns[i].active === true) {
                sortByColumnLabel = this.dropletColumns[i].label;
                break;
            }
        }
        return sortByColumnLabel;
    },