Fix incorrect type on create action button action
This commit is contained in:
parent
d4851764fe
commit
2bb3ef173b
|
|
@ -9,7 +9,7 @@ import React from "react";
|
||||||
|
|
||||||
interface Action {
|
interface Action {
|
||||||
label: string;
|
label: string;
|
||||||
action?: () => void | string;
|
action?: (() => void) | string;
|
||||||
variant?: ActionIconVariant;
|
variant?: ActionIconVariant;
|
||||||
permission?: boolean;
|
permission?: boolean;
|
||||||
icon: React.ReactNode;
|
icon: React.ReactNode;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user