Skip to content

Commit 06b421a

Browse files
committed
fix: update URLs and improve terminal overflow behavior
1 parent b21dde0 commit 06b421a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/tabList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async function run(params: string) {
3030
runOutput: string;
3131
status: number;
3232
compileOutput: string;
33-
}>("https://code.pivotlang.tech/coderunner", {
33+
}>("https://code.lang.pivotstudio.cn/coderunner", {
3434
code: params,
3535
});
3636
isRunning.value = false;

src/hooks/codecov.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ function removeBackPointer(root:SunBurstData) {
147147
export const getTotalCov = async (): Promise<Coverages> => {
148148
return (
149149
await axios.get<Coverages>(
150-
"https://cov.pivotlang.tech/api/v2/github/Pivot-Studio/repos/pivot-lang/totals/?branch=master",
150+
"https://cov.lang.pivotstudio.cn/api/v2/github/Pivot-Studio/repos/pivot-lang/totals/?branch=master",
151151
{
152152
headers: {
153153
accept: "application/json"

src/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ watch(
154154

155155
<style lang="scss">
156156
.terminal {
157-
overflow: scroll;
157+
overflow: auto;
158158
}
159159
.container {
160160
position: relative;

0 commit comments

Comments
 (0)