temp commit
This commit is contained in:
parent
8760f27b51
commit
0e9e49df16
193 changed files with 23228 additions and 935 deletions
|
|
@ -39,6 +39,10 @@ const navRunStateStatus = computed(() => {
|
|||
if (runStatus.isSubmitting && !runStatus.isLikelyRunning) {
|
||||
return "starting";
|
||||
}
|
||||
const s = runStatus.latestRun?.status;
|
||||
if (s === "resolving") {
|
||||
return "resolving";
|
||||
}
|
||||
if (runStatus.isLikelyRunning) {
|
||||
return "running";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,9 +20,15 @@ const toneClass = computed(() => {
|
|||
if (props.status === "running") {
|
||||
return "border-state-info-border bg-state-info-bg text-state-info-text";
|
||||
}
|
||||
if (props.status === "resolving") {
|
||||
return "border-state-info-border bg-state-info-bg text-state-info-text";
|
||||
}
|
||||
if (props.status === "starting") {
|
||||
return "border-state-info-border bg-state-info-bg text-state-info-text";
|
||||
}
|
||||
if (props.status === "canceled") {
|
||||
return "border-state-warning-border bg-state-warning-bg text-state-warning-text";
|
||||
}
|
||||
return "border-stroke-default bg-surface-card-muted text-ink-secondary";
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue