diff --git a/public/index.html b/public/index.html index e8ddb8d1c..46db49a84 100644 --- a/public/index.html +++ b/public/index.html @@ -1834,7 +1834,7 @@
- Openrouter Model Sorting + OpenRouter Model Sorting
@@ -1850,11 +1850,11 @@
- - Group models by their vendor. I.e. put all OpenAI models in one group, all Anthropic models in one group etc. Can be combined with sorting. + + Put OpenAI models in one group, Anthropic models in other group, etc. Can be combined with sorting.
@@ -1962,7 +1962,7 @@
- + diff --git a/public/script.js b/public/script.js index 53e89cc6e..921ef236d 100644 --- a/public/script.js +++ b/public/script.js @@ -926,12 +926,12 @@ async function getStatus() { export function startStatusLoading() { $(".api_loading").show(); - $(".api_button").attr("disabled", "disabled").addClass("disabled"); + $(".api_button").addClass("disabled"); } export function stopStatusLoading() { $(".api_loading").hide(); - $(".api_button").removeAttr("disabled").removeClass("disabled"); + $(".api_button").removeClass("disabled"); } export function resultCheckStatus() { diff --git a/public/style.css b/public/style.css index e63db8100..1dc1888b4 100644 --- a/public/style.css +++ b/public/style.css @@ -1383,7 +1383,8 @@ select option:not(:checked) { .menu_button.disabled { filter: brightness(75%) grayscale(1); - cursor: not-allowed; + opacity: 0.5; + pointer-events: none; } .fav_on {