1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove the text property from overview UI-blocks for being made redundant by a component

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2023-03-16 15:37:31 +02:00
parent aab72a9bf8
commit fe402fafd5
2 changed files with 0 additions and 2 deletions

View File

@ -11,7 +11,6 @@ const uiBlock = getInjectable({
instantiate: () => ({
id: "lol-id",
text: "lol-1",
Component: () => <div>Trollollol</div>,
}),

View File

@ -6,7 +6,6 @@ import { getInjectionToken } from "@ogre-tools/injectable";
export type ClusterOverviewUIBlock = {
id: string;
text: string;
Component: React.ElementType
};