Change all apps thumbnais to be 64px, to fix blurry render (#3805)

This commit is contained in:
Lukasz Ostrowski 2023-06-27 10:50:26 +02:00 committed by GitHub
parent 58a3c26f7e
commit a8babc4252
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 8 deletions

View file

@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---
Changed rendered apps' thumbnails to be bigger. They are sharper now.

View file

@ -55,7 +55,7 @@ export const appDetails = gql`
dataPrivacyUrl dataPrivacyUrl
brand { brand {
logo { logo {
default(size: 24, format: WEBP) default(size: 64, format: WEBP)
} }
} }
} }

View file

@ -41,7 +41,7 @@ export const appFragment = gql`
accessToken accessToken
brand { brand {
logo { logo {
default(format: WEBP, size: 24) default(format: WEBP, size: 64)
} }
} }
privateMetadata { privateMetadata {
@ -72,7 +72,7 @@ export const appInstallationFragment = gql`
id id
brand { brand {
logo { logo {
default(format: WEBP, size: 32) default(format: WEBP, size: 64)
} }
} }
} }
@ -89,7 +89,7 @@ export const appListItemFragment = gql`
version version
brand { brand {
logo { logo {
default(format: WEBP, size: 32) default(format: WEBP, size: 64)
} }
} }
permissions { permissions {

View file

@ -56,7 +56,7 @@ export const AppFragmentDoc = gql`
accessToken accessToken
brand { brand {
logo { logo {
default(format: WEBP, size: 24) default(format: WEBP, size: 64)
} }
} }
privateMetadata { privateMetadata {
@ -86,7 +86,7 @@ export const AppInstallationFragmentDoc = gql`
id id
brand { brand {
logo { logo {
default(format: WEBP, size: 32) default(format: WEBP, size: 64)
} }
} }
} }
@ -108,7 +108,7 @@ export const AppListItemFragmentDoc = gql`
version version
brand { brand {
logo { logo {
default(format: WEBP, size: 32) default(format: WEBP, size: 64)
} }
} }
permissions { permissions {
@ -3691,7 +3691,7 @@ export const AppDocument = gql`
dataPrivacyUrl dataPrivacyUrl
brand { brand {
logo { logo {
default(size: 24, format: WEBP) default(size: 64, format: WEBP)
} }
} }
} }