Skip to content

Commit

Permalink
Rename createCustomFilter to buildCustomFilter (#179)
Browse files Browse the repository at this point in the history
Co-authored-by: Denis Weiß <denis.peters@quinscape.de>
  • Loading branch information
ZidArgs-Work and Denis Weiß authored Sep 16, 2024
1 parent 7524d09 commit 95cc4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/filter/CustomFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let getTemplate = {};
* @param {any} val the value to use in the config
* @returns the resulting filter config or null
*/
export function createCustomFilter(name, fieldName, val) {
export function buildCustomFilter(name, fieldName, val) {
const filter = getCustomFilter(name);
if (filter != null) {
return filter(fieldName, val);
Expand Down

0 comments on commit 95cc4b7

Please sign in to comment.