Browse Source
Fix: Use larger limit for pin url length
pull/265/head
Ji Qu
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
pinry-spa/src/components/pin_edit/PinCreateModal.vue
|
|
@@ -24,7 +24,7 @@ |
|
|
|
type="text" |
|
|
|
v-model="pinModel.form.url.value" |
|
|
|
placeholder="where to fetch the image" |
|
|
|
maxlength="256" |
|
|
|
maxlength="2048" |
|
|
|
> |
|
|
|
</b-input> |
|
|
|
</b-field> |
|
|
@@ -42,7 +42,7 @@ |
|
|
|
type="text" |
|
|
|
v-model="pinModel.form.referer.value" |
|
|
|
placeholder="where to find the pin" |
|
|
|
maxlength="256" |
|
|
|
maxlength="2048" |
|
|
|
> |
|
|
|
</b-input> |
|
|
|
</b-field> |
|
|
|