Skip to content

Commit

Permalink
Fix default sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
alextselegidis committed Oct 28, 2024
1 parent b6f8897 commit 855a7e8
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion assets/js/http/admins_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Admins = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/appointments_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Appointments = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/blocked_periods_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.BlockedPeriods = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/customers_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Customers = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/providers_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Providers = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/secretaries_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Secretaries = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/service_categories_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.ServiceCategories = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/services_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Services = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/settings_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Settings = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/unavailabilities_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Unavailabilities = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down
2 changes: 1 addition & 1 deletion assets/js/http/webhooks_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ App.Http.Webhooks = (function () {
keyword,
limit,
offset,
order_by: orderBy,
order_by: orderBy || undefined,
};

return $.post(url, data);
Expand Down

0 comments on commit 855a7e8

Please sign in to comment.