Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kenneth-bro committed Sep 20, 2024
2 parents f8dd645 + b68ab24 commit 09352b7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Citation: FC = () => {
if (item.enabled) {
tools.push({
name: item.provider_name,
value: item.provider_id,
value: item.tool_label,
})
}
})
Expand All @@ -55,7 +55,7 @@ const Citation: FC = () => {
id,
data_type,
match_column,
show_column,
show_column: show_column?.split(','),
to_link,
src_column,
name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const CitationModal: FC<Props> = (props) => {
dataType: data_type || '',
srcColumn: src_column || '',
matchColumn: match_column || '',
showColumn: show_column || '',
showColumn: show_column?.join(',') || '',
toLink: to_link || '',
isEdit: Boolean(id)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const Citation: FC = () => {
id,
data_type,
match_column,
show_column,
show_column: show_column?.split(','),
to_link,
src_column,
name,
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/base/features/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type ResourcesItem = {
data_type?: string
src_column?: string
match_column?: string
show_column?: string
show_column?: string[]
to_link?: string
name?: string
}
Expand Down
2 changes: 1 addition & 1 deletion web/context/modal-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type CitationForm = {
data_type?: string
src_column?: string
match_column?: string
show_column?: string
show_column?: string[]
to_link?: string
tools?: { name: string; value: string }[]
name?: string
Expand Down
2 changes: 1 addition & 1 deletion web/models/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export type ResourcesItem = {
data_type?: string
src_column?: string
match_column?: string
show_column?: string
show_column?: string[]
to_link?: string
name?: string
}
Expand Down

0 comments on commit 09352b7

Please sign in to comment.