Skip to content

Commit

Permalink
Change domain
Browse files Browse the repository at this point in the history
  • Loading branch information
ruibaby committed Sep 19, 2023
1 parent a9ba075 commit 2eaf863
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion console/src/components/AgreementsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const { isLoading, mutate } = useMutation({
<FormKit v-model="formState.termsOfService" type="checkbox">
<template #label>
<span class="formkit-label formkit-invalid:text-red-500 as-block as-text-sm as-font-medium as-text-gray-700">
我已阅读并同意:<a href="https://halo.run/terms-of-service" target="_blank">《Halo 应用市场服务条款》</a>
我已阅读并同意:<a href="https://www.halo.run/terms-of-service" target="_blank">《Halo 应用市场服务条款》</a>
</span>
</template>
</FormKit>
Expand Down
2 changes: 1 addition & 1 deletion console/src/components/AppActionButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const actions = computed(() => {
// TODO: 需要判断是否已经购买
available: app.value?.application.spec.priceConfig?.mode === "ONE_TIME" && !hasInstalled.value,
onClick: () => {
window.open(`https://halo.run/store/apps/${app.value?.application.metadata.name}/buy`);
window.open(`https://www.halo.run/store/apps/${app.value?.application.metadata.name}/buy`);
},
loading: false,
disabled: false,
Expand Down
2 changes: 1 addition & 1 deletion console/src/components/AppDetailModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ watch(
delay: 300,
}"
>
<a :href="`https://halo.run/store/apps/${app?.application.metadata.name}`" target="_blank">
<a :href="`https://www.halo.run/store/apps/${app?.application.metadata.name}`" target="_blank">
<IconLink />
</a>
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/extensions/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
children:
- $el: a
attrs:
href: https://halo.run/terms-of-service
href: https://www.halo.run/terms-of-service
target: _blank
class: "as-text-indigo-600"
children: "《Halo 应用市场服务条款》"
Expand Down

0 comments on commit 2eaf863

Please sign in to comment.