Skip to content

Commit

Permalink
perf: table-select支持隐藏选中label
Browse files Browse the repository at this point in the history
Closes #322
  • Loading branch information
greper committed Jan 25, 2024
1 parent b1ae0aa commit 04791d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/fast-admin/fs-admin-element
2 changes: 1 addition & 1 deletion packages/fast-admin/fs-admin-naive-ui
1 change: 0 additions & 1 deletion packages/fast-crud/src/components/basic/fs-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export default defineComponent({
},
{ ...ctx.attrs, ...props.buttonProps, class: props.className }
);
debugger;
if (iconProp) {
// @ts-ignore
btnProps.icon = iconProp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div :style="{ width: '100%', height: height || '60vh' }">
<fs-crud ref="crudRef" v-bind="crudBinding">
<template #header-top>
<div class="fs-table-select-current">
<div v-if="valuesFormat !== false" class="fs-table-select-current">
当前选中:
<fs-values-format
ref="valuesFormatRef"
Expand Down Expand Up @@ -81,6 +81,7 @@ type FsTableSelectProps = {
/**
* 当前选中值 fs-values-format组件 配置
* 传false则不显示
*/
valuesFormat?: any;
Expand Down

0 comments on commit 04791d5

Please sign in to comment.