From fb8ba4c0764bedca57fb5e27223e6e5f0844087e Mon Sep 17 00:00:00 2001 From: Will Miao Date: Thu, 6 Nov 2025 22:55:08 +0800 Subject: [PATCH] feat: update commercial icon configuration order --- static/js/components/shared/ModelModal.js | 28 +++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/static/js/components/shared/ModelModal.js b/static/js/components/shared/ModelModal.js index 46f5a8da..26a9e2ef 100644 --- a/static/js/components/shared/ModelModal.js +++ b/static/js/components/shared/ModelModal.js @@ -31,16 +31,10 @@ function getModalFilePath(fallback = '') { const COMMERCIAL_ICON_CONFIG = [ { - key: 'sell', - icon: 'shopping-cart-off.svg', - titleKey: 'modals.model.license.noSell', - fallback: 'No selling models' - }, - { - key: 'rent', - icon: 'world-off.svg', - titleKey: 'modals.model.license.noRent', - fallback: 'No generation services' + key: 'image', + icon: 'photo-off.svg', + titleKey: 'modals.model.license.noImageSell', + fallback: 'No selling generated content' }, { key: 'rentcivit', @@ -49,10 +43,16 @@ const COMMERCIAL_ICON_CONFIG = [ fallback: 'No Civitai generation' }, { - key: 'image', - icon: 'photo-off.svg', - titleKey: 'modals.model.license.noImageSell', - fallback: 'No selling generated content' + key: 'rent', + icon: 'world-off.svg', + titleKey: 'modals.model.license.noRent', + fallback: 'No generation services' + }, + { + key: 'sell', + icon: 'shopping-cart-off.svg', + titleKey: 'modals.model.license.noSell', + fallback: 'No selling models' } ];