fix: Web Share Target text field merge (#1572)
Co-authored-by: userquin <userquin@gmail.com>
This commit is contained in:
parent
6eedaa98bc
commit
faa96c7705
3 changed files with 30 additions and 12 deletions
|
@ -13,6 +13,7 @@ interface ExtendedManifestOptions extends ManifestOptions {
|
|||
method: string
|
||||
enctype: string
|
||||
params: {
|
||||
title: string
|
||||
text: string
|
||||
url: string
|
||||
files: [{
|
||||
|
@ -104,8 +105,9 @@ export const createI18n = async (): Promise<LocalizedWebManifest> => {
|
|||
method: 'POST',
|
||||
enctype: 'multipart/form-data',
|
||||
params: {
|
||||
title: 'title',
|
||||
text: 'text',
|
||||
url: 'text',
|
||||
url: 'url',
|
||||
files: [
|
||||
{
|
||||
name: 'files',
|
||||
|
@ -150,8 +152,9 @@ export const createI18n = async (): Promise<LocalizedWebManifest> => {
|
|||
method: 'POST',
|
||||
enctype: 'multipart/form-data',
|
||||
params: {
|
||||
title: 'title',
|
||||
text: 'text',
|
||||
url: 'text',
|
||||
url: 'url',
|
||||
files: [
|
||||
{
|
||||
name: 'files',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue