Skip to content

Commit

Permalink
fix: renamed calculation to calculate
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Nov 24, 2023
1 parent 608b585 commit 29b283d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CoCreate.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ module.exports = {
"repo": "github.com/CoCreate-app/CoCreate-attributes.git"
},
{
"path": "../CoCreate-components/CoCreate-calculation",
"repo": "github.com/CoCreate-app/CoCreate-calculation.git"
"path": "../CoCreate-components/CoCreate-calculate",
"repo": "github.com/CoCreate-app/CoCreate-calculate.git"
},
{
"path": "../CoCreate-components/CoCreate-cache",
Expand Down
4 changes: 2 additions & 2 deletions docs/components/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -585,9 +585,9 @@
</li>

<li class="line-height:40px height:40px padding-left:30px">
<a href="/docs/calculation">
<a href="/docs/calculate">
<span class="font-weight:600 color:dodgerblue:hover"
>Calculations</span
>Calculates</span
>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"@cocreate/api": "^1.17.0",
"@cocreate/attributes": "^1.13.0",
"@cocreate/cache": "^1.3.0",
"@cocreate/calculation": "^1.13.0",
"@cocreate/calculate": "^1.13.0",
"@cocreate/charts": "^1.11.0",
"@cocreate/clone": "^1.9.0",
"@cocreate/cocreatecss": "^1.19.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ lazyLoad('uuid', '[uuid]', () => import(/*webpackChunkName: "uuid-chunk"*/ '@coc
lazyLoad('search', '[search_id]', () => import(/*webpackChunkName: "search-chunk"*/ '@cocreate/search'));
lazyLoad('elementConfig', '[config-selector]', () => import(/*webpackChunkName: "elementConfig-chunk"*/ '@cocreate/element-config'));
lazyLoad('validation', '[actions*="validate"], required, unique', () => import(/*webpackChunkName: "validation-chunk"*/ '@cocreate/validation'));
lazyLoad('calculation', '[calculate]', () => import(/*webpackChunkName: "calculation-chunk"*/ '@cocreate/calculation'));
lazyLoad('calculate', '[calculate]', () => import(/*webpackChunkName: "calculate-chunk"*/ '@cocreate/calculate'));

// Collabortion Components
lazyLoad('selection', 'input, textarea, [contenteditable]', () => import(/*webpackChunkName: "selection-chunk"*/ '@cocreate/selection'));
Expand Down

0 comments on commit 29b283d

Please sign in to comment.