Change all apps thumbnais to be 64px, to fix blurry render (#3805)
This commit is contained in:
parent
58a3c26f7e
commit
a8babc4252
4 changed files with 13 additions and 8 deletions
5
.changeset/curvy-knives-smile.md
Normal file
5
.changeset/curvy-knives-smile.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"saleor-dashboard": patch
|
||||
---
|
||||
|
||||
Changed rendered apps' thumbnails to be bigger. They are sharper now.
|
|
@ -55,7 +55,7 @@ export const appDetails = gql`
|
|||
dataPrivacyUrl
|
||||
brand {
|
||||
logo {
|
||||
default(size: 24, format: WEBP)
|
||||
default(size: 64, format: WEBP)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ export const appFragment = gql`
|
|||
accessToken
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 24)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
privateMetadata {
|
||||
|
@ -72,7 +72,7 @@ export const appInstallationFragment = gql`
|
|||
id
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 32)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ export const appListItemFragment = gql`
|
|||
version
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 32)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
permissions {
|
||||
|
|
|
@ -56,7 +56,7 @@ export const AppFragmentDoc = gql`
|
|||
accessToken
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 24)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
privateMetadata {
|
||||
|
@ -86,7 +86,7 @@ export const AppInstallationFragmentDoc = gql`
|
|||
id
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 32)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -108,7 +108,7 @@ export const AppListItemFragmentDoc = gql`
|
|||
version
|
||||
brand {
|
||||
logo {
|
||||
default(format: WEBP, size: 32)
|
||||
default(format: WEBP, size: 64)
|
||||
}
|
||||
}
|
||||
permissions {
|
||||
|
@ -3691,7 +3691,7 @@ export const AppDocument = gql`
|
|||
dataPrivacyUrl
|
||||
brand {
|
||||
logo {
|
||||
default(size: 24, format: WEBP)
|
||||
default(size: 64, format: WEBP)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue