Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 全屏状态下复制功能修复&资源文档取值字段修改 #920

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dashboard-front/src/components/ag-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</span>
<copy-shape
class="tool-icon"
v-if="showCopy"
v-if="showCopy && !isFullScreen"
v-bk-tooltips="t('复制')"
@click="handleCopy" />
<template v-if="showFullScreen">
Expand Down
6 changes: 3 additions & 3 deletions src/dashboard-front/src/views/online-debug/components/doc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@
<i class="ml5 bk-icon icon-question-circle" v-bk-tooltips="t('应用访问该网关API时,是否需提供应用认证信息')">
</i>
</div>
<div class="v">{{curComponent.app_verified_required ? t('是') : t('否')}}</div>
<div class="v">{{curComponent.verified_app_required ? t('是') : t('否')}}</div>
</div>
<div class="kv-row">
<div class="k">
{{ t('用户认证') }}:
<i class="ml5 bk-icon icon-question-circle" v-bk-tooltips="t('应用访问该组件API时,是否需要提供用户认证信息')">
</i>
</div>
<div class="v">{{curComponent.user_verified_required ? t('是') : t('否')}}</div>
<div class="v">{{curComponent.verified_user_required ? t('是') : t('否')}}</div>
</div>
<div class="kv-row">
<div class="k">
{{ t('是否需申请权限') }}:
<i class="ml5 bk-icon icon-question-circle" v-bk-tooltips="t('应用访问该网关API前,是否需要在开发者中心申请该网关API权限')"></i>
</div>
<div class="v">{{curComponent.resource_perm_required ? t('是') : t('否')}}</div>
<div class="v">{{curComponent.allow_apply_permission ? t('是') : t('否')}}</div>
</div>
</div>
<!-- eslint-disable-next-line vue/no-v-html -->
Expand Down
Loading