brainloper-ui 14.0.34 → 14.0.35

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.
@@ -1775,7 +1775,7 @@ class DataTableComponent {
1775
1775
  '.pdf', '.doc', '.docx', '.xls', '.xlsx', '.document'
1776
1776
  ];
1777
1777
  rules.forEach(rule => {
1778
- if (rule.action === enumActions$1.SHOW_FILE_ICON && value && value.startsWith('/docs/')) {
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
1781
  if (lowerValue.endsWith(ext)) {