@@ -148,13 +148,13 @@ Fixed sorting order and column layout on projects index page.
148148+ // Get client names, handling null clients
149149+ const clientA = clients .value .find (client => client .id === a .client_id )? .name || ' ' ;
150150+ const clientB = clients .value .find (client => client .id === b .client_id )? .name || ' ' ;
151- +
151+
152152+ // First sort by client name
153153+ const clientComparison = clientA .localeCompare (clientB);
154154+ if (clientComparison !== 0 ) {
155155+ return clientComparison;
156156+ }
157- +
157+
158158+ // Then sort by project name
159159+ return a .name .localeCompare (b .name );
160160+ });
@@ -243,3 +243,21 @@ Removed redundant status column from members table to maintain consistency with
243243` ` `
244244
245245**Result:** Members table now shows: Name → Email → Role → Billable Rate → Edit
246+
247+ ### Remove Pull Request Template
248+
249+ **File:** ` .github / PULL_REQUEST_TEMPLATE .md `
250+ - **Action:** Completely removed file
251+ - **Reason:** Template was blocking contributions with early-stage project notice
252+
253+ **Original content removed:**
254+ ` ` ` markdown
255+ <!--
256+ This project is early stage . The structure and APIs are still subject to change and not stable.
257+ Therefore, we do not currently accept any contributions, unless you are a member of the team.
258+
259+ As soon as we feel comfortable enough that the application structure is stable enough, we will open up the project for contributions.
260+
261+ We do accept contributions in the [documentation repository](https: // github.com/solidtime-io/docs) f.e. to add new self-hosting guides.
262+ -->
263+ ` ` `
0 commit comments