Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

fix: network model validation to accept numbers in slip44 #1210

Merged
merged 3 commits into from Apr 30, 2019
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/renderer/models/network.js
Expand Up @@ -12,7 +12,7 @@ export default new BaseModel({
description: {},
imagePath: {},
slip44: {
type: 'string'
type: ['string', 'number']
},
apiVersion: {
type: 'number'
Expand Down