Skip to content

Commit

Permalink
docs: fix deps (#4096)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkgkn authored Jul 16, 2024
1 parent 0eeeb0c commit 0932a11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/guide/advanced/calculator.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default () => {
x-pattern="readPretty"
x-reactions={{
dependencies: ['.projects'],
when: '{{$deps.length > 0}}',
when: '{{$deps[0].length > 0}}',
fulfill: {
state: {
value:
Expand Down Expand Up @@ -338,7 +338,7 @@ const schema = {
'x-pattern': 'readPretty',
'x-reactions': {
dependencies: ['.projects'],
when: '{{$deps.length > 0}}',
when: '{{$deps[0].length > 0}}',
fulfill: {
state: {
value:
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/advanced/calculator.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default () => {
x-pattern="readPretty"
x-reactions={{
dependencies: ['.projects'],
when: '{{$deps.length > 0}}',
when: '{{$deps[0].length > 0}}',
fulfill: {
state: {
value:
Expand Down Expand Up @@ -338,7 +338,7 @@ const schema = {
'x-pattern': 'readPretty',
'x-reactions': {
dependencies: ['.projects'],
when: '{{$deps.length > 0}}',
when: '{{$deps[0].length > 0}}',
fulfill: {
state: {
value:
Expand Down

0 comments on commit 0932a11

Please sign in to comment.