Skip to content

Commit e9931ee

Browse files
authored
Merge pull request #2 from MichaelDeBoey/fix-links
Fix links to package
2 parents 8faa408 + 2de9b7c commit e9931ee

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We are open to, and grateful for, any contributions made by the community.
88
## Reporting issues and asking questions
99

1010
Before opening an issue, please search the
11-
[issue tracker](https://github.com/erikras/react-final-form-arrays/issues) to
11+
[issue tracker](https://github.com/final-form/react-final-form-arrays/issues) to
1212
make sure your issue hasn’t already been reported.
1313

1414
**We use the issue tracker to keep track of bugs and improvements** to 🏁 React
@@ -34,8 +34,8 @@ request.**
3434
It's never a fun experience to have your pull request declined after investing a
3535
lot of time and effort into a new feature. To avoid this from happening, we
3636
request that contributors create
37-
[an issue](https://github.com/erikras/react-final-form-arrays/issues) to first
38-
discuss any significant new features.
37+
[an issue](https://github.com/final-form/react-final-form-arrays/issues) to
38+
first discuss any significant new features.
3939

4040
Please try to keep your pull request focused in scope and avoid including
4141
unrelated commits.
@@ -52,7 +52,7 @@ npm run precommit
5252
## Coding standards
5353

5454
Our code formatting rules are defined in
55-
[.eslintrc](https://github.com/erikras/react-final-form-arrays/blob/master/.eslintrc).
55+
[.eslintrc](https://github.com/final-form/react-final-form-arrays/blob/master/.eslintrc).
5656
You can check your code against these standards by running:
5757

5858
```sh

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Please format the code before submitting your pull request by running:
2121
npm run precommit
2222
```
2323
24-
https://github.com/erikras/react-final-form-arrays/blob/master/.github/CONTRIBUTING.md
24+
https://github.com/final-form/react-final-form-arrays/blob/master/.github/CONTRIBUTING.md
2525
2626
-->

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![NPM Version](https://img.shields.io/npm/v/react-final-form-arrays.svg?style=flat)](https://www.npmjs.com/package/react-final-form-arrays)
44
[![NPM Downloads](https://img.shields.io/npm/dm/react-final-form-arrays.svg?style=flat)](https://www.npmjs.com/package/react-final-form-arrays)
5-
[![Build Status](https://img.shields.io/travis/erikras/react-final-form-arrays/v6.svg?style=flat)](https://travis-ci.org/erikras/react-final-form-arrays)
6-
[![codecov.io](https://codecov.io/gh/erikras/react-final-form-arrays/branch/master/graph/badge.svg)](https://codecov.io/gh/erikras/react-final-form-arrays)
5+
[![Build Status](https://img.shields.io/travis/final-form/react-final-form-arrays/v6.svg?style=flat)](https://travis-ci.org/final-form/react-final-form-arrays)
6+
[![codecov.io](https://codecov.io/gh/final-form/react-final-form-arrays/branch/master/graph/badge.svg)](https://codecov.io/gh/final-form/react-final-form-arrays)
77
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
88

99
---
@@ -187,11 +187,11 @@ passed into the `<FieldArray/>` component.
187187
#### `subscription?: FieldSubscription`
188188

189189
A
190-
[`FieldSubscription`](https://github.com/erikras/final-form#fieldsubscription--string-boolean-)
190+
[`FieldSubscription`](https://github.com/final-form/final-form#fieldsubscription--string-boolean-)
191191
that selects of all the items of
192-
[`FieldState`](https://github.com/erikras/final-form#fieldstate) that you wish
193-
to update for. If you don't pass a `subscription` prop, it defaults to _all_ of
194-
[`FieldState`](https://github.com/erikras/final-form#fieldstate).
192+
[`FieldState`](https://github.com/final-form/final-form#fieldstate) that you
193+
wish to update for. If you don't pass a `subscription` prop, it defaults to
194+
_all_ of [`FieldState`](https://github.com/final-form/final-form#fieldstate).
195195

196196
#### `validate?: (value: ?any[], allValues: Object) => ?any`
197197

@@ -261,52 +261,52 @@ A function to add a value to the beginning of the array.
261261

262262
#### `meta.active?: boolean`
263263

264-
[See the 🏁 Final Form docs on `active`](https://github.com/erikras/final-form#active-boolean).
264+
[See the 🏁 Final Form docs on `active`](https://github.com/final-form/final-form#active-boolean).
265265

266266
#### `meta.data: Object`
267267

268-
[See the 🏁 Final Form docs on `data`](https://github.com/erikras/final-form#data-object).
268+
[See the 🏁 Final Form docs on `data`](https://github.com/final-form/final-form#data-object).
269269

270270
#### `meta.dirty?: boolean`
271271

272-
[See the 🏁 Final Form docs on `dirty`](https://github.com/erikras/final-form#dirty-boolean).
272+
[See the 🏁 Final Form docs on `dirty`](https://github.com/final-form/final-form#dirty-boolean).
273273

274274
#### `meta.error?: any`
275275

276-
[See the 🏁 Final Form docs on `error`](https://github.com/erikras/final-form#error-any).
276+
[See the 🏁 Final Form docs on `error`](https://github.com/final-form/final-form#error-any).
277277

278278
#### `meta.initial?: any`
279279

280-
[See the 🏁 Final Form docs on `initial`](https://github.com/erikras/final-form#initial-any).
280+
[See the 🏁 Final Form docs on `initial`](https://github.com/final-form/final-form#initial-any).
281281

282282
#### `meta.invalid?: boolean`
283283

284-
[See the 🏁 Final Form docs on `invalid`](https://github.com/erikras/final-form#invalid-boolean).
284+
[See the 🏁 Final Form docs on `invalid`](https://github.com/final-form/final-form#invalid-boolean).
285285

286286
#### `meta.pristine?: boolean`
287287

288-
[See the 🏁 Final Form docs on `pristine`](https://github.com/erikras/final-form#pristine-boolean).
288+
[See the 🏁 Final Form docs on `pristine`](https://github.com/final-form/final-form#pristine-boolean).
289289

290290
#### `meta.submitError?: any`
291291

292-
[See the 🏁 Final Form docs on `submitError`](https://github.com/erikras/final-form#submiterror-any).
292+
[See the 🏁 Final Form docs on `submitError`](https://github.com/final-form/final-form#submiterror-any).
293293

294294
#### `meta.submitFailed?: boolean`
295295

296-
[See the 🏁 Final Form docs on `submitFailed`](https://github.com/erikras/final-form#submitfailed-boolean).
296+
[See the 🏁 Final Form docs on `submitFailed`](https://github.com/final-form/final-form#submitfailed-boolean).
297297

298298
#### `meta.submitSucceeded?: boolean`
299299

300-
[See the 🏁 Final Form docs on `submitSucceeded`](https://github.com/erikras/final-form#submitsucceeded-boolean).
300+
[See the 🏁 Final Form docs on `submitSucceeded`](https://github.com/final-form/final-form#submitsucceeded-boolean).
301301

302302
#### `meta.touched?: boolean`
303303

304-
[See the 🏁 Final Form docs on `touched`](https://github.com/erikras/final-form#touched-boolean).
304+
[See the 🏁 Final Form docs on `touched`](https://github.com/final-form/final-form#touched-boolean).
305305

306306
#### `meta.valid?: boolean`
307307

308-
[See the 🏁 Final Form docs on `valid`](https://github.com/erikras/final-form#valid-boolean).
308+
[See the 🏁 Final Form docs on `valid`](https://github.com/final-form/final-form#valid-boolean).
309309

310310
#### `meta.visited?: boolean`
311311

312-
[See the 🏁 Final Form docs on `visited`](https://github.com/erikras/final-form#visited-boolean).
312+
[See the 🏁 Final Form docs on `visited`](https://github.com/final-form/final-form#visited-boolean).

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"license": "MIT",
1818
"repository": {
1919
"type": "git",
20-
"url": "https://github.com/erikras/react-final-form-arrays.git"
20+
"url": "https://github.com/final-form/react-final-form-arrays.git"
2121
},
2222
"bugs": {
23-
"url": "https://github.com/erikras/react-final-form-arrays/issues"
23+
"url": "https://github.com/final-form/react-final-form-arrays/issues"
2424
},
25-
"homepage": "https://github.com/erikras/react-final-form-arrays#readme",
25+
"homepage": "https://github.com/final-form/react-final-form-arrays#readme",
2626
"devDependencies": {
2727
"babel-eslint": "^8.0.2",
2828
"babel-jest": "^21.2.0",

0 commit comments

Comments
 (0)