Commit Graph

585 Commits

Author SHA1 Message Date
CodingOnStar
4a471894a9 fix(web): stabilize catalog tab header handoff (ECO-470) 2026-08-28 14:08:16 +08:00
Jingyi
94fdda18e2
fix(web): prevent tool card footer clipping (#41430) 2026-08-28 05:36:13 +00:00
CodingOnStar
e2add239a8 fix: align marketplace search suggestions (ECO-455) 2026-08-28 11:35:30 +08:00
yyh
290acf1b73
fix(ui): keep scroll area focus indicator visible (#41404) 2026-08-28 01:37:00 +00:00
CodingOnStar
8dc32a121b fix(web): align mobile partner header (ECO-472) 2026-08-27 18:17:22 +08:00
CodingOnStar
87097815c0 fix(web): add mobile banner swipe (ECO-471) 2026-08-27 17:56:29 +08:00
CodingOnStar
2a7025e758 fix(web): smooth catalog tabs into header (ECO-470) 2026-08-27 17:07:19 +08:00
L1nSn0w
66a3c9620a fix(web): stop Marketplace search jitter and indefinite loading
Three independent defects made catalog search feel unstable.

Stale results flash on every search. `isSearchMode` was derived from the raw
nuqs `q` while the request body used the 500ms-debounced value, so keystroke #1
flipped into search mode with an empty query. That fired a full empty-query
search whose generic top-plugins list rendered for the debounce window before
the real results replaced it. Both now read the same debounced value.

Grid unmount on every query change. The infinite query had no
`placeholderData`, so `data` went undefined whenever the key changed and
ListWrapper's `!isLoading` gate tore the whole result grid out, collapsing the
container and jumping the scroll position. Measured against a live catalog, a
sort change blanked the grid for 152 of 360 sampled frames; with
`keepPreviousData` and an `isRefreshing` dim it is 0 of 461.

Requests that never settle. The Marketplace oRPC link called `globalThis.fetch`
with no deadline, so a stalled connection left the query pending forever with
no error state and no retry — the reported permanent spinner. Requests now
carry a 15s deadline composed with (never replacing) react-query's abort
signal. The server prefetch and the banner fetch get their own 2.5s budget:
awaiting them unbounded held the whole RSC response, pushing time-to-first-byte
to ~7s against a 3s-delayed API while the browser sat on the previous page.

Supporting changes:

- `getMarketplacePlugins` and `getMarketplaceCollectionsAndPlugins` no longer
  swallow every rejection into a successful empty page. That turned outages
  and aborted keystrokes into "no plugins found", suppressed retries, cached
  the emptiness for the full staleTime, and killed `getNextPageParam`
  permanently via `total: 0`. ListWrapper now renders a retry affordance.
- The collections fan-out is bounded to 4 concurrent requests instead of
  firing one per collection at once, and per-collection failures degrade to an
  empty carousel rather than a blank catalog.
- Scroll pagination measures once per frame instead of per scroll event. Each
  threshold hit calls `fetchNextPage`, which defaults to `cancelRefetch: true`,
  so an unthrottled burst aborted and restarted the in-flight page request —
  and the backend counts those aborts against its search circuit breaker.
- Cross-page results are deduped by `org/name`; Meilisearch resolves
  `install_count` ties by document order and the sync task rewrites those
  documents every minute, so pages can overlap and collide on React keys.
- Search queries no longer inherit `retry: 3`; ~7s of backoff reads as a hang.
2026-08-27 16:27:42 +08:00
CodingOnStar
cdcafa0827 fix(web): add subtle creator avatar shadow (ECO-469) 2026-08-27 16:24:19 +08:00
CodingOnStar
efb8db8db3 fix(web): keep creator profile background continuous (ECO-468) 2026-08-27 16:22:45 +08:00
CodingOnStar
74bfab20a6 fix(web): crop ad banners from the right (ECO-467) 2026-08-27 16:02:15 +08:00
CodingOnStar
259fe7116e fix(web): align mobile banner heights (ECO-466) 2026-08-27 15:58:54 +08:00
CodingOnStar
c31b852767 fix: remove persistent search result arrows (ECO-465) 2026-08-27 15:39:23 +08:00
CodingOnStar
e8954d609e fix: refine marketplace search result spacing (ECO-464) 2026-08-27 15:37:58 +08:00
CodingOnStar
abb8f5c239 fix: prevent marketplace search layout shift (ECO-462) 2026-08-27 15:33:42 +08:00
CodingOnStar
54f4073f22 fix(web): make banner carousel loop seamlessly (ECO-458) 2026-08-27 15:02:31 +08:00
CodingOnStar
f3a08a78eb fix(web): preserve blog banner image corners (ECO-457) 2026-08-27 14:54:48 +08:00
CodingOnStar
2f7267962b fix(web): align marketplace catalog navigation (ECO-456) 2026-08-27 14:52:56 +08:00
CodingOnStar
96ba0cb1f8 fix(web): use divider between marketplace filters (ECO-454) 2026-08-27 14:28:04 +08:00
yyh
c8e29d9a7d
fix(web): preserve link semantics in button-styled navigation (#41312) 2026-08-26 10:50:06 +00:00
CodingOnStar
cb6d38d9f9 Revert "fix(web): keep creator profiles when only published work exists"
This reverts commit cd02aeb53c.
2026-08-26 18:05:13 +08:00
CodingOnStar
cd02aeb53c fix(web): keep creator profiles when only published work exists
Template author pages 404'd when the marketplace creators row was missing,
even if /templates/publisher/{handle} already returned public templates.
2026-08-26 18:02:54 +08:00
CodingOnStar
debda8ac5c fix(web): drop the extra rest-state border from marketplace search
Match the homepage Input Field: rest uses the fill only, with the gray
stroke only on hover and focus.
2026-08-25 19:34:00 +08:00
CodingOnStar
65d89e187f fix(web): snap marketplace hero icons to the grid and wash the title
Align the 41px hero grid to the same 50% origin as the six icons so
the 1px strokes sit flush with each tile. Match Figma Ellipse 5 for
the title/search wash, and size the hero to four grid rows so the
bottom icons are not clipped.
2026-08-25 18:59:26 +08:00
CodingOnStar
6476d0018c fix(web): fade marketplace home hero grid toward the edges
Match Figma's inset grid wash so the lines taper out instead of
meeting the viewport at full strength.
2026-08-25 15:22:34 +08:00
CodingOnStar
d942e963bb fix(web): restyle marketplace home hero with grid and six icons
Replace the cycling brand marks with the new Figma decorations: a
divider-subtle grid, six static category icons, and hide both on
mobile widths.
2026-08-25 14:47:36 +08:00
CodingOnStar
7181812aff fix(web): pick event/ad mobile banner images on phones
Phones use images.mobile when present, otherwise desktop. Tablet
media no longer matches mobile widths.
2026-08-25 13:55:11 +08:00
CodingOnStar
0081fb4e2b fix(web): match standalone mobile recommend and event banners
Use the dedicated backdrop on independent-site recommend frames, and size event/ad mobile frames to the 800×721 slot with cover fill.
2026-08-25 12:11:52 +08:00
CodingOnStar
6e5cd92eec fix(web): match standalone marketplace mobile banners and collections
Show recommend as icon-only on mobile, keep event/ad posters uncropped,
and hide collection carousel dots under 879px.
2026-08-24 19:02:46 +08:00
CodingOnStar
0da1c88de7 feat(web): add standalone marketplace homepage mobile layout
Stack homepage banners, search, and catalog to the 879px Figma mobile
frame on the independent marketplace site only. Event and ad slides use
the 357px mobile art frame; blog and recommend stay stacked 197+160.
2026-08-24 15:45:26 +08:00
CodingOnStar
c4615c3f2f fix(web): match marketplace banner play control to Figma 2026-08-24 14:40:11 +08:00
CodingOnStar
26763c33a1 fix(web): use current dialog close primitive 2026-08-24 12:50:40 +08:00
CodingOnStar
1503de3aa5 fix(web): hide bundles from marketplace plugin categories 2026-08-24 12:39:00 +08:00
CodingOnStar
e377dd0d91 merge: bring origin/main into feat/creator-profile-home
# Conflicts:
#	api/controllers/console/tag/tags.py
#	api/openapi/markdown/console-openapi.md
#	api/services/app_service.py
#	oxlint-suppressions.json
#	packages/contracts/generated/api/console/tags/types.gen.ts
#	packages/contracts/generated/api/console/tags/zod.gen.ts
#	packages/contracts/generated/api/console/workspaces/orpc.gen.ts
2026-08-24 12:15:37 +08:00
yyh
e18310e52e
refactor(dify-ui): simplify overlay content APIs (#41098) 2026-08-22 23:54:08 +00:00
yyh
a9b8c84e9b
refactor(dify-ui): simplify popover content API (#41069) 2026-08-21 13:11:40 +00:00
yyh
6cb96adfbe
refactor(dify-ui): compose dialog close controls (#41064) 2026-08-21 10:21:43 +00:00
yyh
7b1339a156
refactor(web): migrate subscription confirmation input (#41051) 2026-08-21 06:38:21 +00:00
CodingOnStar
b19ed8869c fix(web): restore marketplace header request/publish dropdown
The redesigned HomeHeader Guide action jumped straight to docs. Restore
the four-option book-icon dropdown used on production Marketplace.
2026-08-20 15:50:35 +08:00
Stephen Zhou
e2f6418fe4
chore: inline custom ESLint rules (#41008) 2026-08-20 07:32:13 +00:00
CodingOnStar
5088a4bb47 fix(web): align marketplace_banner_click site event payload
Map recommend banners to recommendation, emit theme/item/blog/ad/event
fields only for the matching click target, and keep banner language as
stored.
2026-08-20 11:38:25 +08:00
CodingOnStar
5a55909579 fix(web): use Creator Center default avatar on marketplace profiles
Match the missing-avatar fallback to Creator Center settings: brand-blue gradient and a white initial, instead of the gray letter tile.
2026-08-20 11:12:46 +08:00
CodingOnStar
4ef15cae6a fix(web): sort creator profile creations through publisher APIs
Pass sort_by and sort_order to the publisher plugin and template lists, and keep the mixed Creations grid ordered after both responses return.
2026-08-19 18:23:35 +08:00
CodingOnStar
803c3cd2df fix(web): restore creator profile contracts and i18n
The standalone and embedded creator pages call marketplaceClient.creatorDetail,
but those routes were dropped from the marketplace contract. Restore them, skip
avatar fetches when none was uploaded, and add creatorProfile strings to every
plugin locale.
2026-08-19 16:37:14 +08:00
CodingOnStar
62cb8a9c74 fix(web): resume trending autoplay after pointer pagination
Pointer clicks leave hover/focus on the dots, which kept rotation
paused until blur. Keyboard selection still keeps the focus pause.
2026-08-19 09:32:39 +08:00
CodingOnStar
3713581520 Merge remote-tracking branch 'origin/main' into feat/creator-profile-home
# Conflicts:
#	.editorconfig
#	oxlint-suppressions.json
#	web/app/components/base/markdown-blocks/code-block.tsx
#	web/app/layout.tsx
2026-08-18 21:30:57 +08:00
yyh
9ce463fc24
refactor(web): compose search prefixes with input group (#40922) 2026-08-18 06:04:37 +00:00
CodingOnStar
803d5d3fe5 fix(web): keep marketplace autocomplete open during async search
Tie controlled open to the typing session so outside press can dismiss
during debounce, and keep Status/Empty mounted for the pending live region.
2026-08-18 11:39:23 +08:00
CodingOnStar
6ab0c21172 refactor(web): split marketplace autocomplete onto main popup anatomy
Use Autocomplete Portal/Positioner/Popup after the dify-ui split, restore
creator-profile selection, and move the language filter search to InputGroup.
2026-08-18 10:44:16 +08:00
CodingOnStar
4d8bd40058 merge: bring origin/main into feat/creator-profile-home
Keep marketplace workspace-skill runtime tests and take main's
autocomplete popup anatomy plus input-group composition.
2026-08-18 10:39:42 +08:00
yyh
6d89557355
feat(dify-ui): add input group composition (#40890) 2026-08-18 02:14:39 +00:00
CodingOnStar
5712cf91dc feat(web): emit marketplace site events from the shared catalog
Forward standalone marketplace Amplitude events from shared catalog
UI, including banner, card, filter, search, and creator/partner clicks.
2026-08-17 21:22:38 +08:00
CodingOnStar
ec9eb308ef feat(web): animate marketplace hero icons with grouped spring swaps
Cycle the four hero marks as a group every 4s, retracting toward the
title and expanding back out so later 4-set icon lists can drop in.
2026-08-17 17:15:56 +08:00
CodingOnStar
55dcaea347 merge: restore marketplace catalog tag and language filters
Combine homepage catalog filters with the later marketplace hero icon fixes.
2026-08-17 16:19:08 +08:00
CodingOnStar
d4c265551a fix(web): swap marketplace hero icons for themed Figma brand marks
Replace the homepage hero decorations with light/dark Dropbox, DuckDuckGo, GitHub, and Google assets, and hide them on narrow viewports.
2026-08-17 16:12:12 +08:00
姜涵煦
9b2368ca6b feat(web): restore templates language filter on the catalog bar 2026-08-17 15:27:32 +08:00
姜涵煦
fdc7338431 feat(web): put TagFilter to the left of marketplace plugin categories 2026-08-17 15:14:00 +08:00
CodingOnStar
2ee3927a10 fix(web): render the marketplace hero Gmail mark
The iconify CSS class masks to currentColor, so the multi-color Gmail
logo was an empty tile. Use the SVG asset the same way as DuckDuckGo.
2026-08-17 15:12:54 +08:00
姜涵煦
7440e27381 feat(web): restore marketplace languages query state 2026-08-17 15:08:35 +08:00
CodingOnStar
7ed77c05d0 feat(web): track marketplace banner impressions and clicks
Count a frame impression after the current slide stays 50% visible for 1s, and emit Amplitude click/item_click events that match the banner export schema.
2026-08-17 14:28:49 +08:00
CodingOnStar
fab9d78c48 fix(web): request templates banners on the templates page 2026-08-17 14:14:30 +08:00
CodingOnStar
24b977da27 Merge branch 'feat/marketplace-homepage-redesign' into feat/creator-profile-home 2026-08-17 13:01:32 +08:00
CodingOnStar
f5ac519089 Merge branch 'main' into feat/marketplace-homepage-redesign 2026-08-17 12:54:54 +08:00
YungLe
219596c4df
feat(plugin-auth): visibility picker for OAuth credentials (#39840)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com>
Co-authored-by: twwu <twwu@dify.ai>
2026-08-17 02:41:26 +00:00
yyh
facb60abfe
fix(web): align combobox interaction semantics (#40826) 2026-08-17 02:13:08 +00:00
CodingOnStar
90692c2d92 fix(web): show marketplace search results without a searching placeholder
Keep the suggestion popup closed until results settle so the standalone
site does not flash the missing gotoAnything.searching key. Render
plugin and template icons from the marketplace asset URLs.
2026-08-16 17:14:59 +08:00
CodingOnStar
0746dcc354 fix(web): keep Creator Center on the matching marketplace environment
Prefer the current marketplace origin so marketplace.dify.dev opens creators.dify.dev instead of inheriting a baked-in .ai URL.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 16:31:03 +08:00
CodingOnStar
ea6935060b fix(web): keep embedded marketplace search live without suggestions
The public marketplace owns the suggestion dropdown. Console plugin and
template search keep updating results as the query changes.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 16:28:01 +08:00
CodingOnStar
cf121dcc10 refactor(web): share the marketplace home shell and validate banners with zod
Compose the Plugins and Templates catalog homes from one HomeShell so the
page scaffold cannot drift, split the templates page into category
navigation, pagination and link helpers, and hand the collection list
pre-filtered locale data instead of filtering twice. Replace the
hand-rolled banner payload guards with a zod schema keeping the same
lenient semantics, share the partner-collection constants, label the
plugin type filter group as categories, and backfill the missing Lao
trending title.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 15:22:51 +08:00
CodingOnStar
0fc3791bb6 refactor(web): split marketplace home trending and share catalog constants
Break the trending banner into navigation and slide modules with shared
home constants, hoist the marketplace container id and partner-collection
constants for reuse across the catalog, and drop the i18n keys the
redesigned home no longer renders.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 15:04:39 +08:00
CodingOnStar
66f63a074b fix(web): stop marketplace carousel autoplay from crashing on a single page
The autoplay plugin skips its own setup when a carousel has one page, so
the eager play() path dereferenced an undefined delay list and crashed
the standalone marketplace templates tab. Keep autoplay stopped for
single-page carousels and pause rotation permanently once focus enters,
dropping the play/pause toggle that resumed it.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 15:03:10 +08:00
CodingOnStar
5f52b94aa0 fix(web): declare webp assets and drop an unused carousel export
CI type-checks without the Next-generated image declarations, so *.webp
needs an explicit module declaration like the other formats. Also keep
getCarouselItemsPerPage module-private since only the hook consumes it,
which unblocks the knip production check.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 14:01:08 +08:00
CodingOnStar
a4a57ec662 fix(web): address marketplace review follow-ups on assets, locale and a11y
- resample the 3MB trending background to a 97KB webp and serve a frozen
  recommend banner from the E2E stub so the benchmark covers the carousel
- show the on-page filtered count in template search and redirect
  out-of-range pages to the last available page
- localize the carousel controls across all 24 locales and replace the
  i18n type casts with typed selectors
- surface Marketplace API failures with a retry action instead of
  rendering them as empty results
- use iconify marks for the hero decorations, share the carousel
  page-size hook to avoid a hydration mismatch, move banner types into
  @dify/contracts, scope the Cmd+K shortcut to the standalone platform,
  point the embedded logo at /marketplace, pass resolvedTheme to the
  detail dialogs, and reveal the detail iframe after a loading timeout

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 13:48:34 +08:00
CodingOnStar
3087b45017 fix(web): render marketplace Creator Center from a client module
home-header.tsx is a server component on the standalone marketplace
homepage, where calling buttonVariants() from the client-marked
dify-ui button module crashes SSR with a 500. Extract the Creator
Center link into its own 'use client' file, mirroring home-guide.tsx.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 11:35:18 +08:00
CodingOnStar
618f2b8e00 style: remove gray border lines from marketplace home header
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-15 19:46:59 +08:00
CodingOnStar
7eb37099d9 fix: restore marketplace entry modules consumed by dify-marketplace
The knip production check flagged these as unused, but the outer
dify-marketplace repository imports them via path aliases into its own
Next.js app, so deleting them broke that build. Restore them and
declare them as knip entries with the cross-repo consumer documented.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-15 16:06:57 +08:00
CodingOnStar
71d0462287 fix: remove dead marketplace entry files and relax long-task budget
knip production flagged web/app/components/plugins/marketplace/index.tsx
and home/marketplace-live-search.tsx as unused after the homepage page
composed EmbeddedMarketplace directly; drop them with their specs. Raise
LONG_TASK_BUDGET_MS to 300ms since hydration peaks ~220ms on shared CI
runners under 4x CPU throttling.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-15 14:53:19 +08:00
CodingOnStar
e7ca2735bf fix: address marketplace review feedback on CI lane, templates and carousel a11y
- move the marketplace performance E2E lane out of main CI (opt-in workflow_dispatch)
- add server-rendered pagination for template search and validate page/view/sort params at the route boundary
- match template locale filtering by language prefix with an explicit English fallback
- cache the template collection fan-out (TTL + in-flight dedupe), lower per-collection limit and batch requests
- reset the forced search mode atom when the plugin catalog mounts
- clear stale search suggestions during the debounce window
- let the trending Play control override focus/hover pause reasons
- honor prefers-reduced-motion on the eagerly playing first-collection carousel
- give the Creator Center link an accessible, localized name
- replace the nested main landmark on the templates page with a div
- localize banner read-more actions and backfill marketplace.home keys across all 24 locales

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-15 14:40:03 +08:00
CodingOnStar
d825dd75dc Merge remote-tracking branch 'origin/main' into feat/marketplace-homepage-redesign
Co-authored-by: Cursor <cursoragent@cursor.com>

# Conflicts:
#	oxlint-suppressions.json
#	web/app/account/oauth/authorize/__tests__/page.spec.tsx
#	web/app/account/oauth/authorize/page.tsx
#	web/app/components/plugins/marketplace/list/__tests__/list-with-collection.spec.tsx
2026-08-15 13:44:00 +08:00
CodingOnStar
f033532d7b fix(web): address marketplace review feedback and clean up login code
Resolve the review comments on the marketplace homepage: restore list SSR
hydration with an eager first collection, make the loading detail iframe
inert, drop stale search suggestions, add carousel pause controls and
off-screen a11y handling, widen the trending pause boundary, bind initial
banners to the server locale, and remove nested interactive links plus dead
CSS scan config. Refactor the marketplace silent-authorize hook to be
self-contained, extract shared OAuth URL helpers, and delete the unused
allowedAbsoluteOrigins option. Serve the performance benchmark from a frozen
local marketplace API stub and gate it with a dedicated Chromium CI lane.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-14 18:03:10 +08:00
CodingOnStar
cade438670 fix(web): unblock marketplace homepage CI
Stop exporting unused marketplace helpers and remove the leftover
Trigger plugin icon. Assert the card icon through its img src instead
of a background-image style the marketplace variant no longer uses.
2026-08-14 13:44:25 +08:00
CodingOnStar
14e26b3768 fix(web): make the blog banner fully clickable
Wrap the entire blog banner slide in the destination link so the
title, body, artwork, and Read more label all open the same URL.
2026-08-14 13:21:43 +08:00
yyh
0f63a05d04
chore: upgrade Vite+ to 0.2.9 (#40762) 2026-08-14 04:42:28 +00:00
yyh
f8e05ebfc0
docs(web): consolidate maintainer guidance (#40758) 2026-08-14 03:40:05 +00:00
CodingOnStar
f1d8d00ab7 fix(web): align marketplace hero decoration icons with Figma
Use the design-frame coordinates for Dropbox, DuckDuckGo, GitHub, and Gmail.
2026-08-14 10:53:31 +08:00
CodingOnStar
889bd18da4 Merge branch 'feat/marketplace-homepage-redesign' into feat/creator-profile-home 2026-08-14 10:34:47 +08:00
autofix-ci[bot]
8dcd7073de
[autofix.ci] apply automated fixes 2026-08-14 02:34:31 +00:00
CodingOnStar
83805282fd Merge branch 'main' into feat/marketplace-homepage-redesign 2026-08-14 10:30:13 +08:00
Jingyi
e3b3165e9a
feat(web): embed marketplace in integration categories (#40744) 2026-08-14 01:55:51 +00:00
yyh
1cf8db8395
refactor(web): clarify model selector trigger ownership (#40732)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-08-14 01:03:50 +00:00
CodingOnStar
d69ba7a8ee feat(web): add marketplace search decoration icons
Place Dropbox, DuckDuckGo, GitHub, and Gmail marks around the marketplace home search field.
2026-08-13 23:14:39 +08:00
CodingOnStar
47d3663989 fix: remove marketplace detail dialog gradient 2026-08-13 14:52:43 +08:00
CodingOnStar
eac3d01f78 fix(web): match Creator Center dark text 2026-08-13 14:52:43 +08:00
CodingOnStar
17c1aaf944 fix(web): resolve marketplace lint failures 2026-08-13 14:52:43 +08:00
CodingOnStar
f457b40293 fix(web): keep marketplace tabs embedded 2026-08-13 14:52:43 +08:00
CodingOnStar
8fc21b7df1 fix(web): keep marketplace headers sticky 2026-08-13 14:52:43 +08:00
CodingOnStar
4f7e74cb30 fix(web): harden Creator Center link 2026-08-13 14:52:42 +08:00
CodingOnStar
8e26acd35b fix(web): restore creator center header link 2026-08-13 14:52:42 +08:00
CodingOnStar
a9861421de fix(web): stabilize marketplace search layout 2026-08-13 14:52:42 +08:00
CodingOnStar
8220f05b34 feat: add marketplace template detail dialog 2026-08-13 14:52:42 +08:00