Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
fix(Filemanager): broken filterPath for OO
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Feitl committed Jun 9, 2021
1 parent 7d9e4fe commit 09d5538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/Filemanager/js/Filemanager.js
Expand Up @@ -63,7 +63,7 @@ Tine.Filemanager.Application = Ext.extend(Tine.Tinebase.Application, {
};

store.on('load', highlight);
ftb.setValue([{field: 'path', operator: 'equals', value: dirPath}]);
ftb.setValue([{field: 'path', operator: 'equals', value: dirPath.replace(/\/\s*$/, "")}]);
ftb.onFiltertrigger();
}).defer(500, this);
}
Expand Down

0 comments on commit 09d5538

Please sign in to comment.