This is an automated email from the ASF dual-hosted git repository. kassiez pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new 9ab8c731ea3 [events] Fix events status (#2250) 9ab8c731ea3 is described below commit 9ab8c731ea362b12556b7f9216e8496acaef9892 Author: KassieZ <139741991+kass...@users.noreply.github.com> AuthorDate: Tue Apr 1 15:30:24 2025 +0800 [events] Fix events status (#2250) ## Versions - [ ] dev - [ ] 3.0 - [ ] 2.1 - [ ] 2.0 ## Languages - [ ] Chinese - [ ] English ## Docs Checklist - [ ] Checked by AI - [ ] Test Cases Built --- src/pages/events/index.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/pages/events/index.tsx b/src/pages/events/index.tsx index 905167e9569..77af526bf49 100644 --- a/src/pages/events/index.tsx +++ b/src/pages/events/index.tsx @@ -41,7 +41,7 @@ const EVENTS_PAGE_DATA = { cardDate: 'March 27, 2025', address: 'Virtual', description: 'Apache Doris PMC Chair will dive deep into the compute-storage decoupled mode of Doris', - status: 'Upcoming', + status: 'Completed', img: ( <img alt="cover img" @@ -62,7 +62,7 @@ const EVENTS_PAGE_DATA = { cardDate: 'March 20, 2025', address: 'Virtual', description: 'Join us as we dive into the key development directions of Apache Doris in 2025 !', - status: 'Upcoming', + status: 'Completed', img: ( <img alt="address icon" @@ -151,9 +151,8 @@ export default function Events() { <section className="my-[5.5rem]"> <div className="max-w-[75rem] mx-auto "> <div - className={`flex flex-wrap gap-x-[1.5rem] gap-y-[5rem] ${ - !showMore ? 'mb-[2.5rem]' : 'mb-[5rem]' - } `} + className={`flex flex-wrap gap-x-[1.5rem] gap-y-[5rem] ${!showMore ? 'mb-[2.5rem]' : 'mb-[5rem]' + } `} > {eventList.slice(0, 9).map((event: Event, index) => ( <EventCard data={event} key={index} /> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org