Skip to content

Commit

Permalink
chore: use PascalCase for utility file
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Sep 13, 2024
1 parent 5bb8607 commit 9190b71
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cloud-element-templates/Helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getBusinessObject } from 'bpmn-js/lib/util/ModelUtil';
import { is, isAny } from 'bpmn-js/lib/util/ModelUtil';

import { v4 as uuid } from 'uuid';
import { isSpecialFeelProperty, toFeelExpression } from './util/feelUtil';
import { isSpecialFeelProperty, toFeelExpression } from './util/FeelUtil';

/**
* The BPMN 2.0 extension attribute name under
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FeelNumberEntry, NumberFieldEntry } from '@bpmn-io/properties-panel';
import { useService } from 'bpmn-js-properties-panel';
import { propertyValidator, usePropertyAccessors } from './util';
import { isSpecialFeelProperty } from '../../../util/feelUtil';
import { isSpecialFeelProperty } from '../../../util/FeelUtil';
import { PropertyDescription } from '../../../../components/PropertyDescription';
import { PropertyTooltip } from '../../components/PropertyTooltip';
import { useCallback } from '@bpmn-io/properties-panel/preact/hooks';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { find, groupBy } from 'min-dash';
import { getPropertyValue, setPropertyValue, validateProperty } from '../../../util/propertyUtil';
import { isSpecialFeelProperty, toFeelExpression } from '../../../util/feelUtil';
import { isSpecialFeelProperty, toFeelExpression } from '../../../util/FeelUtil';

import { useCallback, useState } from '@bpmn-io/properties-panel/preact/hooks';

Expand Down

0 comments on commit 9190b71

Please sign in to comment.