List için buton düzenlemesi
This commit is contained in:
parent
0420f1a3e5
commit
63185d7b22
3 changed files with 9 additions and 8 deletions
|
|
@ -347,11 +347,11 @@ const Chart = (props: ChartProps) => {
|
|||
<Button
|
||||
size="xs"
|
||||
variant="default"
|
||||
className="text-sm"
|
||||
className="text-sm flex items-center gap-1"
|
||||
onClick={() => setOpenDrawer(true)}
|
||||
title="Series Özelleştir"
|
||||
title="Series Customization"
|
||||
>
|
||||
<FaCrosshairs className="w-3 h-3" />
|
||||
<FaCrosshairs className="w-3 h-3" /> Serileri Özelleştir
|
||||
</Button>
|
||||
|
||||
{checkPermission(gridDto?.gridOptions.permissionDto.u) && (
|
||||
|
|
|
|||
|
|
@ -315,24 +315,25 @@ const Pivot = (props: PivotProps) => {
|
|||
<div className="p-1 bg-white dark:bg-neutral-800 dark:border-neutral-700 ">
|
||||
<div className="flex justify-end items-center">
|
||||
<div className="relative pb-1 flex gap-1 border-b-1">
|
||||
|
||||
<Button
|
||||
size="xs"
|
||||
variant={'default'}
|
||||
className="text-sm"
|
||||
className="text-sm flex items-center gap-1"
|
||||
onClick={clearPivotFilters}
|
||||
title="Remove Filter"
|
||||
>
|
||||
<FaTimes className="w-3 h-3" />
|
||||
<FaTimes className="w-3 h-3" /> Remove Filters
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
size="xs"
|
||||
variant={'default'}
|
||||
className="text-sm"
|
||||
className="text-sm flex items-center gap-1"
|
||||
onClick={resetPivotGridState}
|
||||
title="Reset Grid State"
|
||||
>
|
||||
<FaUndo className="w-3 h-3" />
|
||||
<FaUndo className="w-3 h-3" /> Reset Grid State
|
||||
</Button>
|
||||
|
||||
{checkPermission(gridDto?.gridOptions.permissionDto.u) && (
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ const useToolbar = ({
|
|||
if (grdOpt.editingOptionDto?.allowAdding && checkPermission(grdOpt.permissionDto?.c)) {
|
||||
items.push({
|
||||
locateInMenu: 'auto',
|
||||
showText: 'inMenu',
|
||||
showText: 'always',
|
||||
name: 'addRowButton',
|
||||
location: 'after',
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue