searchRights(query) {
      let rightsFound = this.spdxLicenseListComplete.filter(function (rights) {
        return rights.name.toLowerCase().startsWith(query.toLowerCase());
      });
      this.set('spdxLicenseList', rightsFound);