Skip to content

Commit

Permalink
fix: rolled log files filter
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
  • Loading branch information
pedrolamas committed Mar 31, 2024
1 parent f325243 commit 9d2a1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/widgets/filesystem/FileSystem.vue
Expand Up @@ -419,7 +419,7 @@ export default class FileSystem extends Mixins(StateMixin, FilesMixin, ServicesM
break
case 'rolled_log_files':
if (file.type === 'file' && file.filename.match(/\.\d{4}-\d{2}-\d{2}$/)) {
if (file.type === 'file' && file.filename.match(/\.\d{4}-\d{2}-\d{2}(_\d{2}-\d{2}-\d{2})?$/)) {
return false
}
break
Expand Down

0 comments on commit 9d2a1cb

Please sign in to comment.