Hello team,Thanks for the effort put into creating this amazing component. Not a bug but just sharing a fix we had to perform in the latest version.We installed the new version and saw that the dashboards in Lifetime were empty when the search filter was empty, i.e. upon loading the screen. We added the following line to the SQL queries in the data actions of the FeatureToggleManagement and FeatureToggleArchive screens to fix this issue:
(...) AND ({FeatureToggle}.[Name] like '%' || @SearchKeyword || '%'
OR {FeatureToggle}.[Key] like '%' || @SearchKeyword || '%'
OR {FeatureToggle}.[Key] IN (SELECT FTWithTags.FTId FROM FTWithTags)
OR @SearchKeyword = ' ')
We have Oracle databases.Kind regards,Sofía