Skip to content

Commit

Permalink
Merge #3152 and fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
chouchouji authored and zhoujinsong committed Oct 11, 2024
1 parent aebd12c commit 05883ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions amoro-ams/amoro-ams-dashboard/src/types/common.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export interface IKeyAndValue {
value: string
}
export interface IBaseDetailInfo {
optimizingStatus: string
tableType: string
tableName: string
createTime: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ onMounted(() => {
<template #overlay>
<div>
<div class="branch-selector-search">
<a-input v-show="tabActiveKey === branchTypeMap.BRANCH" v-model:value="branchSearchKey" :placeholder="$t('filterBranchesOrTags')" @click="onClickInput" />
<a-input v-show="tabActiveKey === branchTypeMap.TAG" v-model:value="tagSearchKey" :placeholder="$t('filterBranchesOrTags')" @click="onClickInput" />
<a-input v-show="tabActiveKey === branchTypeMap.BRANCH" v-model:value="branchSearchKey" :placeholder="$t('filterBranchesOrTagsOrConsumers')" @click="onClickInput" />
<a-input v-show="tabActiveKey === branchTypeMap.TAG" v-model:value="tagSearchKey" :placeholder="$t('filterBranchesOrTagsOrConsumers')" @click="onClickInput" />
</div>
<a-tabs v-model:activeKey="tabActiveKey" type="card">
<a-tab-pane :key="branchTypeMap.BRANCH" :tab="$t('branches')">
Expand Down

0 comments on commit 05883ca

Please sign in to comment.