brainloper-ui 14.0.35 → 14.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1778,7 +1778,7 @@ class DataTableComponent {
1778
1778
  if (rule.action === enumActions$1.SHOW_FILE_ICON && value && value.includes('/docs/')) {
1779
1779
  const lowerValue = value.toLowerCase();
1780
1780
  for (const ext of allowedExtensions) {
1781
- if (lowerValue.endsWith(ext)) {
1781
+ if (lowerValue.includes(ext)) {
1782
1782
  active = true;
1783
1783
  break;
1784
1784
  }